所以我在.txt文件中写了一个整数,如下所示:
dolyen = int(input("Enter exchange rate: "))
filedolyen = open("dolyen.txt","w")
filedolyen.write("%s" % dolyen)
filedolyen.close()
然后我尝试在另一部分代码中复制文件中的数字:
yendol1 = open("yendol.txt","r")
print(value * yendol1,"Dollars")
任何有关将文件中的数字分配给变量的帮助都将受到赞赏
答案 0 :(得分:1)
filedolyen.read()
将整个文件作为字符串
读取int(filedolyen.read())
获取整数
答案 1 :(得分:0)
我们可以使用 with
来自动关闭文件资源
with open('myfile') as file:
myint = int(file.read())