缺少了choice導致的錯誤

TypeError: unsupported operand type(s) for +: ‘int’ and ‘list’ choice 函數: s = choice([0,1,2,3]) 這裏面choice提取的數字屬於int類型 所以type(s) 是 int 類型 s = ([0,1,2,3]) 若省去了choice就是 list類型了 由於大意漏掉了choice,導致我在學習隨機漫步這個
相關文章
相關標籤/搜索