for x in range(1,10):
for y in range(10):
if x < y:
print x * 10 + y
for y in range(10):
if x < y:
print x * 10 + y
2015-07-11
已采纳回答 / 画笔叔叔
提示是说不是ASCII码,之前的课程里老师让设置打代码要设置为ASCII码(默认也是),ASCII(American Standard Code for Information
Interchange,美国标准信息交换代码)是基于拉丁字母的一套电脑编码系统,主要用于显示现代英语和其他西欧语言。所以中文不能显示。改成UTF-8就可以显示中文了。不过对后面的编程可能有别的影响,我还没看。
2015-07-11
print [x*100+y*10+z for x in range(1,10) for y in range(0,10) for z in range(0,10) if x == z]
2015-07-10
print '%s,%s' %('1','2')
在字符串里用%s 可以输出%格式化后的tuple元素
在字符串里用%s 可以输出%格式化后的tuple元素
2015-07-10
保存为 html.py
,
G:\pyproject>python html.py>py.html
G:\pyproject>explorer py.html
,
G:\pyproject>python html.py>py.html
G:\pyproject>explorer py.html
2015-07-10
def generate_tr(name, score):
if score < 60:
return '<tr><td >%s</td><td style="color:red">%s</td></tr>' % (name, score)
else:
return '<tr><td >%s</td><td>%s</td></tr>' % (name, score)
tds = [generate_tr(name, score) for name, score in d.iteritems()]
if score < 60:
return '<tr><td >%s</td><td style="color:red">%s</td></tr>' % (name, score)
else:
return '<tr><td >%s</td><td>%s</td></tr>' % (name, score)
tds = [generate_tr(name, score) for name, score in d.iteritems()]
2015-07-10
def move(n, a, b, c):
if n==1:
print a,'-->',c
return
move(n-1, a, c, b)
print a,'-->',c
move(n-1, b, a, c)
move(4, 'A', 'B', 'C')
if n==1:
print a,'-->',c
return
move(n-1, a, c, b)
print a,'-->',c
move(n-1, b, a, c)
move(4, 'A', 'B', 'C')
2015-07-10