概述
我正在创建一个Tkinter程序,该程序允许用户将文本输入一个漂亮的框而不是python shell.
因为我想在多个程序中使用它,所以我将其做成一个可以在其他文件中使用的函数.
我可以让它在另一个文件中运行,但不能导入变量,这是我的代码.
文件1:
import tkinter as tk
def input_text(label_text, button_text):
class SampleApp(tk.Tk):
def __init__(self):
tk.Tk.__init__(self)
self.entry = tk.Entry(self)
self.button = tk.Button(self, text=button_text, command=self.on_button)
self.label = tk.Label(self, text=label_text)
self.label.pack(side = 'top', pady = 5)
self.button.pack(side = 'bottom', pady = 5)
self.entry.pack()
def on_button(self):
answer = self.entry.get()
self.destroy()
w = SampleApp()
w.resizable(width=True, height=True)
w.geometry('{}x{}'.format(180, 90))
w.mainloop()
档案2:
import text_input as ti
from text_input import answer
ti.input_text('Enter some text', 'OK')
我收到错误ImportError:无法导入名称“答案”
最后
以上就是搞怪水蜜桃为你收集整理的python读取一个文件并写入另一个文件_从另一个文件获取变量-python的全部内容,希望文章能够帮你解决python读取一个文件并写入另一个文件_从另一个文件获取变量-python所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复