from tkinter import * x = 0 def val_Changer(x): global z z = x + 1 print(z) return z def root(): root = Tk() val_Updater = Button(root ...
確定! 回上一頁