循环帮助基本的python

时间:2018-03-11 20:00:56

标签: python loops

我是pythons的新手,我正在尝试通过基础知识我试图在一个卡片中创建一个随机序列的卡片但是当我运行这个程序时我不断收到此错误。

PyQtGraph

任何想法?

shuffledeck.apend(card[deck[index]])
AttributeError: 'list' object has no attribute 'apend'

1 个答案:

答案 0 :(得分:4)

实际上是

Python already supports this

from random import shuffle
shuffle(deck)

你的主要问题是你写了shuffledeck.apend(card[deck[index]])而不是shuffledeck.append(card[deck[index]]) 注意额外的p。