print r'''"TO be,or not to be":that is the question.
Whether it's nobler in the mind to suffer.'''
r'''...'''里面的内容无论是 ' 还是 " 都不需要加转义字符\,可直接转行 enter 不需要\n
Whether it's nobler in the mind to suffer.'''
r'''...'''里面的内容无论是 ' 还是 " 都不需要加转义字符\,可直接转行 enter 不需要\n
2015-05-24
在Python程序中,变量是用一个变量名表示,变量名必须是大小写英文、数字和_的组合,且不能用数字开头!
x1 = 1
d = 3
n = 100
x100 = x1 + d*(n-1)
s = n*(x1 + x100)/2
print s
x1 = 1
d = 3
n = 100
x100 = x1 + d*(n-1)
s = n*(x1 + x100)/2
print s
2015-05-24
# -*- coding:utf-8 -*
#这一行全部都是注释
print 'hello' #这也是注释
-----------------------------
Python的注释以#开头,后面 的文字直到行尾都算注释
想要注释中文必须先写上 “# -*- coding:utf-8 -*”,不然会报错
#这一行全部都是注释
print 'hello' #这也是注释
-----------------------------
Python的注释以#开头,后面 的文字直到行尾都算注释
想要注释中文必须先写上 “# -*- coding:utf-8 -*”,不然会报错
2015-05-24
print 45678+0x12fd2
print 'learn Python in imooc'
print 100<99
print 0xff==255
果然简洁明了
print 'learn Python in imooc'
print 100<99
print 0xff==255
果然简洁明了
2015-05-24
请教大家谁知道u'''...'''和ur'''...'''的区别?
2015-05-24
for x in [1,2,3,4,5,6,7,8,9 ]:
for y in [0,1,2,3,4,5,6,7,8,9]:
if x<y:
print x*10+y
for y in [0,1,2,3,4,5,6,7,8,9]:
if x<y:
print x*10+y
2015-05-23
for x in [1,2,3,4,5,6,7,8,9 ]:
for y in [0,1,2,3,4,5,6,7,8,9]:
if x>y:
print x*10+y
for y in [0,1,2,3,4,5,6,7,8,9]:
if x>y:
print x*10+y
2015-05-23
age = 8
if age >= 18:
print 'adult'
elif age >= 6:
print 'teenager'
else:
print 'kid'
if age >= 18:
print 'adult'
elif age >= 6:
print 'teenager'
else:
print 'kid'
2015-05-23
tr代表一行 以<tr>开始,</tr>结束
td代表一格 以<td>开始,</td>介绍 中间的style就是颜色了
<tr><td>%s</td><td style="color:red">%s</td></tr>就代表有一行,有2个格子,第二个格子用红色显示!
td代表一格 以<td>开始,</td>介绍 中间的style就是颜色了
<tr><td>%s</td><td style="color:red">%s</td></tr>就代表有一行,有2个格子,第二个格子用红色显示!
2015-05-23
print [int(i+j+k) for i in '123456789' for j in '0123456789' for k in '123456789' if (i==k)]
2015-05-22