如果我打开一个包含以下内容的文件: 1 2 3 4 \n 5 6 7 \n 8 9 10
所以
def read(list):
list = open('list.tet','r')
nums = list.readlines()
new_list = []
for num in nums:
if num.find('\n'):
new_list.append(num.strip('\n')
return new_list
我希望得到的输出为 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
我应该怎么办?谢谢