如何从我的 csv 文件中删除换行符?这是我当前输出的样子:
{'\n': ('', ''), '0-586-08997-7\n': ('Kurt Vonnegut', 'Breakfast of Champions'), '978-0-14-302089-9\n': ('Lloyd Jones', 'Mister Pip'), '1-877270-02-4\n': ('Joe Bennett', 'So Help me Dog'), '0-812-55075-7': ('Orson Scott Card', 'Speaker for the Dead')}
这就是输出的样子:
{'0-586-08997-7': ('Kurt Vonnegut', 'Breakfast of Champions'),
'978-0-14-302089-9': ('Lloyd Jones', 'Mister Pip'),
'1-877270-02-4': ('Joe Bennett', 'So Help me Dog'),
'0-812-55075-7': ('Orson Scott Card', 'Speaker for the Dead')}
我不想使用任何内置的 csv 工具或任何其他工具,因为我们还没有在课堂上做过这些,所以我怀疑我们是否需要在这些问题中使用它们。
def isbn_dictionary(filename):
"""docstring"""
file = open(filename, "r")
library = {}
for line in file:
line = line.split(",")
tup = (line[0], line[1])
library[line[2]] = tup
return library
print(isbn_dictionary("books.csv"))