如何从Python中的dict值中删除\n
或换行符?
testDict = {'salutations': 'hello', 'farewell': 'goodbye\n'}
testDict.strip('\n') # I know this part is incorrect :)
print(testDict)
最佳答案
要更新字典,只需遍历它并对值应用str.rstrip()
:
for key, value in testDict.items():
testDict[key] = value.rstrip()
要创建新词典,可以使用词典理解:
testDict = {key: value.rstrip() for key, value in testDict.items()}
关于python - 从字典Python 3中剥离换行符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/41913605/