我的档案:
Offices 10
MedicalOffice 15
PostOffice 30
Mall 200
如何让 python 只读取第二列。喜欢得到:
10
15
30
200
我已经尝试过可能的方法让它只读取,10、15、30 等......而不是名称。我试过这个没有名字,它工作正常。但我需要在文本文件中包含名称。有什么帮助吗?谢谢
def something(file1):
with file1 as f:
nums = [int(line) for line in f]
print("Read from File: ", nums)
textFileName = input("Enter the filename: ")
file1 = open(textFileName)
something(file1)
谢谢你。