从python中的.txt文件中检索单个整数并将其分配给变量(BEGINNER)

时间:2016-09-28 11:50:25

标签: python-3.x

所以我在.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")

任何有关将文件中的数字分配给变量的帮助都将受到赞赏

2 个答案:

答案 0 :(得分:1)

filedolyen.read()

将整个文件作为字符串

读取
int(filedolyen.read())

获取整数

答案 1 :(得分:0)

我们可以使用 with 来自动关闭文件资源

with open('myfile') as file:
     myint = int(file.read())