这是我尝试过的蛇游戏,但出现错误。
我确实想出了另一种方法,
(即每次蛇碰到硬币时重新定义线程)
但我仍然对问题是什么以及如何解决感到困惑。
import playsound
import threading
import time
def coin():
playsound.playsound('coin.mp3')
ding = threading.Tread(target=coin)
ding.start()
time.sleep(5)
ding.start()
RuntimeError:线程只能启动一次