我正在尝试编写一个程序,该程序生成一个包含 1-5 的十个随机整数的列表,然后在每个整数重复时打印该数字。然后打印删除重复项的第二个列表。现在,我什至根本无法生成第一个列表。我不断收到 TypeError: 'int' object is not iterable
这是我到目前为止所拥有的:
def randomTen():
"""return list of ten integers and the number of times each one
appears"""
firstList= []
for num in range(1,11):
x= int(random.randint(1,6))
list1= firstList.append(x)
print(list1)