python中的基本数据存储

时间:2015-04-17 09:55:57

标签: python

我需要将用户数据输入存储在txt.format中的特定文件夹中。

所以这是我的代码(例如)

saving = input( "enter your saving" )

week = saving * 7 

如何保存"周"进入一个特定的文件夹?

1 个答案:

答案 0 :(得分:0)

这很容易做到。

saving = int(input( "enter your saving" ))
week = saving * 7 

with open('give file path here', 'w') as file:
    file.write(str(week))