已采纳回答 / 慕仰6034142
# -*- coding: utf-8 -*-L=['王',100,'孙',99]print str(L).decode('string_escape')
2019-03-26
已采纳回答 / Close_0
因为 ‘Adam’是字符串,而d['Adam']返回int类型的95.Python 不支持这两种类型用‘+’号连接,输出的话用‘,’即可
TypeError: unsupported operand type(s) for +: 'int' and 'str'
2019-03-24
已采纳回答 / 慕桂英9269908
因为是递归的,所以在move(n)递归给move(n-1)的时候,move(n-1)会继续递归给move(n-2),如此递归下去,最后是move(1),move(1)的值会返回到move(2)中,move(2)的值会返回到move(3)中,再继续如此依序返回,最后整个的结果最开始其实是从move开始的
2019-03-24
最新回答 / 人间世支离疏
def square_sum(L): s=0 for x in L: if x/2==0:#没有意义的判断,只能排除x==0或1的结果,即便是求奇数的平方和,应该是 if x%2 == 0 continue s=s+x**2 return s#求list列表里每个素数的平方的和#-*- coding: UTF-8 -*-def square_sum(list): sum = 0 is_zhishu=0 for x in ...
2019-03-23
最新回答 / 呵阿咯咯
可以创出来一组数组比如 xrange(1,5)直接写就是传出来xrange(1,5)但是他用一个类型包裹起来比如list(xrange(1,5))就能打印出来【1,2,3,4】;list(xrange(1,5))等价range(1,5)从1开始打印到小于5的数字,如果还有第三个参数,就是间隔的长度
2019-03-23
最新回答 / 叶mag
def move(n, a, b, c): if n==1: print a ,' --> ' ,c return move(n-1,a,c,b) move(1,a,b,c) move(n-1,b,a,c)move(4, 'A', 'B', 'C')请理解题意,如果有n个盘,将n-1移到b,另一个移到c,而不是你所写的n-1
2019-03-22