Python:以特定方式将变量写入文件

时间:2017-04-21 15:21:46

标签: python variables tkinter

所以我希望用户选择一个文件和一个文件夹。该文件将被移动到所述文件夹,现在我想将这些变量(x和y)及其值(路径)写入另一个file.py,其中包含shutil.move模块,如下所示。然而,我迷失于如何在shutil.move中获取变量x和y的部分作为变量,从而将路径而不是字母写入file.py.在f.write内有没有办法做到这一点,还是应该使用别的东西?

from tkinter import *
from tkinter.filedialog import askopenfilename, askdirectory
from tkinter.messagebox import showerror
import shutil


X = askopenfilename(filetypes=(("All files", "*.*"),
                               ("HTML files", "*.html;*.htm"),
                               ("Template files", "*.tplate")))

Y = askdirectory()


f = open("OperatorTest.py", "w")
f.write('shutil.move(X, Y)' )

1 个答案:

答案 0 :(得分:2)

您可以使用:

f.write('shutil.move({0}, {1})'.format(X, Y))