-
d = { 'Adam': 95, 'Lisa': 85, 'Bart': 59 }
def generate_tr(name, score):
if score < 60:
return ' ' %(name, score)%s %s
else:
return ' ' %(name, score)%s %s
tds = [generate_tr(name, score) for name, score in d.iteritems()]
print ''
'
print ' 'Name Score
print 'n'.join(tds)
print ' -
def toUpper(L): #将字符变为大写字符
return [x.upper() for x in L if isinstance(x,str) ]
print toUppers('Hello','World',232) -
print [100n1+10n2+n3 for n1 in range(1,10) for n2 in range(10) for n3 in range(10) if n1==n3] #输出对称的三位数



