0
試圖更改熊貓列字符串中的前兩個字符。熊貓矢量化字符串替換索引
def shift(x):
x=list(x)
x[0] = '1'
x[1] = '9'
print x #this prints the correct result as list
##str(x)
return ''.join(x) ## this works
mc_data['timeshift'] = mc_data['realtime'].map(lambda x: shift(x))
輸出NoneType
我也試過,str.slice_replace.map(lambda x: '19')
。
我該怎麼做?