已采纳回答 / 阎王老爷
第四行后面缩进字符有问题,可能多打了个空格,代码重新打一遍就好了def calc_prod(lst): def lazy_prod(): def f(x,y): return x*y return functools.reduce(f,lst,1) return lazy_prodf = calc_prod([1,2,3,4])print f()
2016-12-24
已采纳回答 / 乍回身
变量可以通过变量名访问。在指令式语言python中,引用变量通常是可变的。说白了,就是引用被你赋值的变量,你想要得到这个值,是通过这个变量访问的,就是类似于a = 1这种的至于引用,直接将变量放入结构式中就好,
2016-12-24
已采纳回答 / solowolf21
分配给不同实例的内存的地址<__main__.Person instance at 0x10da88758><__main__.Person instance at 0x10db329e0>
2016-12-21
已采纳回答 / We_are_young
Python3,我之前用的2.7,换3的时候也是不懂,print (sorted(['bob', 'about', 'Zoo', 'Credit'], cmp_ignore_case))这样就行了<...code...>
2016-12-15
已采纳回答 / Zombee
先整理你的代码:<...code...>运行报错:<...code...>所以是sqrt岀问题了,就是那最后一个,加上math.<...code...>
2016-12-13
已采纳回答 / 慕粉2014408783
从例子中可以看出 他们是按名字进行排序的 而名字 是__str__特殊方法定义的 思路是 将不是Student类的元素 也转换成 str 类型 这样就可以与 Student类的名字进行比较了<...code...>
2016-12-12