【发布时间】:2017-11-05 18:31:57
【问题描述】:
我正在尝试获得所有可能的骰子排列组合。下面是我的代码。
def PrintAllPerms(n, arr, str_):
if (n == 0):
print str_
arr.append(str_)
return arr
else:
for i in ["1","2","3","4","5","6"]:
str_ = str_ + i
arr = PrintAllPerms(n-1,arr,str_)
str_ = str_[:-1]
PrintAllPerms(2,[],"")
但我只打印了这么多后出现以下错误。
PrintAllPerms(2,[],"")
11
12
13
14
15
16
21
<ipython-input-7-d03e70079ce2> in PrintAllPerms(n, arr, str_)
2 if (n == 0):
3 print str_
----> 4 arr.append(str_)
5 return arr
6 else:
AttributeError: 'NoneType' object has no attribute 'append'
那为什么打印到 2,1 呢?
什么是正确的处理方式?
【问题讨论】:
标签: python list recursion append python-2.x