最赞回答 / qq_慕仰0054622
用 + 号必须在两个数据为同一类型时才可以进行,例如 1 + 2 ,两个整型相加输出结果为 3,' 123' + '123',两个字符串相加结果为 '123123' ,但用 1 + '123',就会报错,这里需要用到转型。用 ',' 号只是单纯意义的输出两个数据,且用空格分隔开来,以说明输出有两个数据。
2019-10-30
已采纳回答 / 慕少9508967
因为输出的是L[0]和L[1],这两个元素在第一轮循环的时候就已经确定了,且由于set是无序的,因此一次循环遍历到的有可能是set中的任意一个元素。可进行如下修改:s = set([('Adam', 95), ('Lisa', 85), ('Bart', 59)])L=[]i=0for x in s: T=x L.append(T[0]) L.append(T[1]) print(L[i],":",L[i+1]) i=i+1print(L)
2019-10-30
def move(n, a, b, c):
if n==1:
print a,'-->',c
else:
move(n-1,a,c,b)
move(1,a,b,c)
move(n-1,b,a,c)
move(4, 'A', 'B', 'C')
if n==1:
print a,'-->',c
else:
move(n-1,a,c,b)
move(1,a,b,c)
move(n-1,b,a,c)
move(4, 'A', 'B', 'C')
2019-10-29
print [m*100+n*10+o for m in range(1,10) for n in range(0,10) for o in range (1,10)if m==o]
2019-10-29
因为它给的代码是L.pop(2);L.pop(3).因为上述列表索引只到3.所以当删除掉2的索引时,列表直接变为了到2的索引。要不就先删除第三个索引再删除第二索引。那么直接两个L.pop(2);L.pop(2),或则L.pop(3);L.pop(2)。
2019-10-28
d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59, 'Paul': 74 }
sum = 0.0
for name, score in d.items():
sum = sum + score
print name , ':', score
print 'average', ':', sum/len(d)
sum = 0.0
for name, score in d.items():
sum = sum + score
print name , ':', score
print 'average', ':', sum/len(d)
2019-10-28