gpt4 book ai didi

python - 在Python中将数字文件读取到元组中?

转载 作者:太空宇宙 更新时间:2023-11-03 21:39:59 24 4
gpt4 key购买 nike

我有一个文件,其中包含这样的数字:

5

10

15

20

我知道如何编写读取文件并将数字输入到列表中的代码,但是如果元组不支持附加功能,如何编写读取文件并将数字输入到元组中的代码?这是我到目前为止得到的:

filename=input("Please enter the filename or path")
file=open(filename, 'r')
filecontents=file.readlines()
tuple1=tuple(filecontents)
print(tuple1)

输出是这样的:

('5\n', '10\n', '15\n', '20\n')

应该是这样的:

5,10,15,20

最佳答案

试试这个:

s=','.join(map(str.rstrip,file))

演示:

filename=input("Please enter the filename or path: ")
file=open(filename, 'r')
s=tuple(map(str.rstrip,file))
print(s)

示例输出:

Please enter the filename or path: thefile.txt
(5,10,15,20)

关于python - 在Python中将数字文件读取到元组中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52939263/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com