好吧,我几天前遇到了这个问题,有人帮我解决了问题,但我的代码真的很丑(我对编码完全陌生)现在我试图以更聪明的方式让它更好,但现在我的 gui 一直都在发狂。我试着像我上次的代码那样做,但这次它不起作用。这次我要做什么我无法理解但想理解它。一些有用的提示和技巧?或者更智能、更快、更强大的方法,或者 mybae the gui more Beautyfule?
import time
import sys
from tkinter import *
import threading
root = Tk()
root.geometry("600x400")
global start
start = 1
def startUp():
user_input()
thr = threading.Thread(target=user_input)
thr.start()
def user_input():
global nameInput
global start
nameInput = textBox.get("1.0","end-1c")
start = 0
if start < 1:
while True:
apex = ApexLegends("APIKey")
player = apex.player(nameInput)
print("Gesamt Kills: " + player.kills + "\n" + 'Gesamt Damage: ' + player.damage)
time.sleep(3)
else:
print("stop")
anleitung=Label(text="Gib einen Spielernamen ein und drücke Start")
anleitung.pack()
textBox=Text(root, height=1, width=30)
textBox.pack()
startButton=Button(root, height=1, width=10, text="Start", command=lambda:startUp())
startButton.pack()
SMILET
30秒到达战场
千巷猫影
相关分类