感觉Python的这种语法规则并不好,按一般的变成语言来说,布尔值的逻辑运算结果应该是一个布尔值,刚才我用PHP试了一次,$a=true;$b='hello',var_dump($a&&$b)的结果是true(boolen)类型,而py的结果居然是个字符串,这个运算就有点晕了……
2018-11-28
执行L.pop(2)时list的长度已经发生变化,有效索引号为0、1、2,所以此时执行L.pop(3)才会提示错误为超出list范围。
2018-11-28
[x:y:z],x代表起始索引,Y代表结束索引(不包含),Z代表步长
x y z均可省略,用做默认值
例如
[:3] 0-3的索引
[2::3]从第二个索引开始到最后一个索引(不包含),每隔3个取一个
[::-1]倒序输出
x y z均可省略,用做默认值
例如
[:3] 0-3的索引
[2::3]从第二个索引开始到最后一个索引(不包含),每隔3个取一个
[::-1]倒序输出
2018-11-28
循环语句顺序不一样,得出来的结果也不一样
sum = 0
x = 1
n = 1
while True:
n = n + 1
if n > 21:
break
sum = sum + x
x = x * 2
print sum
sum = 0
x = 1
n = 1
while True:
n = n + 1
if n > 21:
break
sum = sum + x
x = x * 2
print sum
2018-11-28
最赞回答 / Felix_Hu
return '&t;ttr&t;&&t;ttd&t;%%s&t;//td&t;&&t;ttd style="color:red"&;%s%s&;/t/td&;&l&;/t/tr&;' ' % (name, score)这是一句表达式,有换行而已,实际上就是
return '&"cotr&:re&">d&s&l%s&td&/td<&tr&td style="color:re...
2018-11-27
def square_of_sum(L):
L1 = []
for x in L:
L1.append(int(x*x))
return sum(L1)
print square_of_sum([1, 2, 3, 4, 5])
print square_of_sum([-5, 0, 5, 15, 25])
L1 = []
for x in L:
L1.append(int(x*x))
return sum(L1)
print square_of_sum([1, 2, 3, 4, 5])
print square_of_sum([-5, 0, 5, 15, 25])
2018-11-27
L1 = []
for x in range(1,101):
L1.append(int(x*x))
print (sum(L1))
for x in range(1,101):
L1.append(int(x*x))
print (sum(L1))
2018-11-27
for x in ['1', '2','3','4','5','6','7','8','9']:
for y in ['1','2','3','4','5','6','7','8','9']:
if x < y :
print x + y
for y in ['1','2','3','4','5','6','7','8','9']:
if x < y :
print x + y
2018-11-27