L = []
x = 1
while x <= 100:
L.append(x*x)
x += 1
print sum(L)
x = 1
while x <= 100:
L.append(x*x)
x += 1
print sum(L)
2019-05-29
sum = 0
x = 1
while True:
sum = sum + x
x = x + 2
if x > 100:
break
print sum
只循环奇数更方便
x = 1
while True:
sum = sum + x
x = x + 2
if x > 100:
break
print sum
只循环奇数更方便
2019-05-29
sum = 0
x = 1
while x<100:
if x%2==1:
sum += x
x=x+1
print sum
同样的结果,只是多运行了一倍,但是实际运用中还是会经常用到这种写法的
x = 1
while x<100:
if x%2==1:
sum += x
x=x+1
print sum
同样的结果,只是多运行了一倍,但是实际运用中还是会经常用到这种写法的
2019-05-29
第一段里面if判断理论上是有用的,但是执行之后没反应,无奈之下在print里面手动添加了颜色配置,实际代码过程中这种方法肯定不可取,然后去运行之后就没问题了
2019-05-29
接上一段
print ('<table border="1">' )
print ('<tr><th>Name</th><th>Score</th></tr>' )
print ('<tr><td>Lisa</td><td>85</td></tr>')
print ('<tr><td>Adam</td><td>95</td></tr>')
print ('<tr><td>Bart</td><td style="color:red">59</td></tr>')
print ('</table>')
有几个需要注意的点,颜色判定没用,执行之后还是原色,应该是网页问题
print ('<table border="1">' )
print ('<tr><th>Name</th><th>Score</th></tr>' )
print ('<tr><td>Lisa</td><td>85</td></tr>')
print ('<tr><td>Adam</td><td>95</td></tr>')
print ('<tr><td>Bart</td><td style="color:red">59</td></tr>')
print ('</table>')
有几个需要注意的点,颜色判定没用,执行之后还是原色,应该是网页问题
2019-05-29
d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59 }
def generate_tr(name, score):
if score<60:
return '<tr><td>%s</td><td style="color:red">%s</td></tr>' % (name, score)
return '<tr><td>%s</td><td>%s</td></tr>' % (name, score)
tds = [generate_tr(name,score) for name, score in d.iteritems()]
def generate_tr(name, score):
if score<60:
return '<tr><td>%s</td><td style="color:red">%s</td></tr>' % (name, score)
return '<tr><td>%s</td><td>%s</td></tr>' % (name, score)
tds = [generate_tr(name,score) for name, score in d.iteritems()]
2019-05-29
先执行L.pop(2) 然后你懂的,既然2都没了,原来的3自然就到2了。所以代码改为:
L.pop(2)
L.pop(2)
L.pop(2)
L.pop(2)
2019-05-27
TypeError: 'int' object is not iterable
Traceback (most recent call last):
SyntaxError: invalid syntax
NameError: name 'sun' is not defined
TypeError: unsupported operand type(s) for +: 'float' and 'str'
Traceback (most recent call last):
SyntaxError: invalid syntax
NameError: name 'sun' is not defined
TypeError: unsupported operand type(s) for +: 'float' and 'str'
2019-05-27
for index, name in zip(range(1,len(L)+1),L):
等同于
for index, name in [(1,'Adam'),(2,'Lisa'),(3,'Bart'),(4,'Paul')]:
print index, '-', name
结果应该是1-Adam......
等同于
for index, name in [(1,'Adam'),(2,'Lisa'),(3,'Bart'),(4,'Paul')]:
print index, '-', name
结果应该是1-Adam......
zip(range(1,len(L)+1),L)的意思
首先range(1,len(L)+1)。过程:len(L)为4,len(L)+1为5,结果应该是[1,2,3,4]
zip(range(1,len(L)+1),L)==zip([1,2,3,4],['Adam','Lisa','Bart','Paul'])
结果应该是[(1,'Adam'),(2,'Lisa'),(3,'Bart'),(4,'Paul')]
首先range(1,len(L)+1)。过程:len(L)为4,len(L)+1为5,结果应该是[1,2,3,4]
zip(range(1,len(L)+1),L)==zip([1,2,3,4],['Adam','Lisa','Bart','Paul'])
结果应该是[(1,'Adam'),(2,'Lisa'),(3,'Bart'),(4,'Paul')]
d = {
'Adam': 95,
'Lisa': 85,
'Bart': 59
}
这么缩进是故意的嘛,'第一行空着从第二行开始写'好奇怪
'Adam': 95,
'Lisa': 85,
'Bart': 59
}
这么缩进是故意的嘛,'第一行空着从第二行开始写'好奇怪
2019-05-26
Python2 range() 函数返回的是列表。
Python3 range() 函数返回的是一个可迭代对象(类型是对象),而不是列表类型, 所以打印的时候不会打印列表。
Python3 range() 函数返回的是一个可迭代对象(类型是对象),而不是列表类型, 所以打印的时候不会打印列表。
2019-05-24
def average(*args):
sum=0
if len(args)==0:
return 0.0
else:
for i in args:
sum=sum+i
return sum*1.0/len(args)
print average()
print average(1, 2)
print average(1, 2, 2, 3, 4)
sum=0
if len(args)==0:
return 0.0
else:
for i in args:
sum=sum+i
return sum*1.0/len(args)
print average()
print average(1, 2)
print average(1, 2, 2, 3, 4)
2019-05-24