0
返回4這是我的代碼:試圖讓蟒蛇,隨機混合列表mycolours,但要蟒蛇僅從列表
def main():
mycolours = ['R', 'G', 'B', 'Y', 'P', 'O']
myguess = 'RGBY'
total_guess = 5
x = random.shuffle(mycolours[:4])
for i in range(total_guess):
if myguess == x:
print('CORRECT')
else:
print('TRY AGAIN')
main()
代替x
從列表中返回4個隨機字符串,它返回一個值沒有。
所以你的代碼不工作?你有什麼問題? –
這個問題呢? https://stackoverflow.com/questions/33578220/how-do-i-get-python-to-randomly-return-4-letters-from-a-list –
@kevinGuan沒有x不返回四個隨機字符串,而是它返回一個沒有的值 – terriyon