我需要将用户数据输入存储在txt.format中的特定文件夹中。
所以这是我的代码(例如)
saving = input( "enter your saving" )
week = saving * 7
如何保存"周"进入一个特定的文件夹?
答案 0 :(得分:0)
这很容易做到。
saving = int(input( "enter your saving" ))
week = saving * 7
with open('give file path here', 'w') as file:
file.write(str(week))