我为一个学校项目做了一个python乐透模拟。我终于完成了它的工作,只是当用户要求计算机生成数字时出现一个随机错误。如果您尝试使用该代码并在按下“ 1”以使计算机生成后继续重新启动该程序,则会遇到相同的错误。 我只需要一些帮助解决此错误,并可能对代码进行一些调整。
谢谢
错误:
Traceback (most recent call last):
File "D:\Lotto\combined.py", line 154, in <module>
start()
File "D:\Lotto\combined.py", line 148, in start
computer_generates()
File "D:\Lotto\combined.py", line 83, in computer_generates
list_of_Num_2[-1].append(x) #Loop and take the first number in list [-1] and add to list
AttributeError: 'int' object has no attribute 'append'