经过一些谷歌搜索但没有任何好的匹配,我希望你能帮助我完成以下转换。我有一些以{FROM-TO}样式编写的值的范围:
df_current = pd.DataFrame.from_dict({'A': ['test{1-2}this{1-3}', 'or{2-3}'], 'B': ['yes', 'no']})
A B
0 test{1-2}this{1-3} yes
1 or{2-3} no
为了进一步处理,我想创建这个:
df_wish = pd.DataFrame.from_dict({ \
'A': [\
'test1this1', 'test1this2', 'test1this3',\
'test2this1', 'test2this2', 'test2this3', \
'or2', 'or3'],
'B': [ \
'yes', 'yes', 'yes', 'yes', 'yes', 'yes', \
'no', 'no']})
A B
0 test1this1 yes
1 test1this2 yes
2 test1this3 yes
3 test2this1 yes
4 test2this2 yes
5 test2this3 yes
6 or2 no
7 or3 no
请注意,B 只是为新行复制。
不负相思意
相关分类