英文:
How to save the changes after a loop in python?
问题
for i in data['test preparation course']:
if i == 'none':
i = None
在这里,我试图将字符串 'none' 转换为 Python 中的 None 值,而且成功了。
我只想在数据集上应用这些更改。
英文:
for i in data['test preparation course']:
if i == 'none':
i = None
here, I'm trying to convert 'none' string with None values in python, and it went well.
I just want to activate the changes on the dataset
答案1
得分: 2
请使用 pandas.Series.replace
函数:
data['test preparation course'].replace('none', None, inplace=True)
英文:
Instead, use pandas.Series.replace
function:
data['test preparation course'].replace('none', None, inplace=True)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论