1.if age >= 18:
print 'adult'
else:
print 'teenager'
2. else 后面有个“:”。
print 'adult'
else:
print 'teenager'
2. else 后面有个“:”。
2015-01-09
>>> t = ('a', 'b', ['A', 'B'])
2015-01-09
1. t = () 空tuple
2.>>> t = (1)
>>> print t
1
false
3.>>> t = (1,)
>>> print t
(1,) true
2.>>> t = (1)
>>> print t
1
false
3.>>> t = (1,)
>>> print t
(1,) true
2015-01-09
1.tuple一旦创建完毕,就不能修改了。
2.>>> t = ('Adam', 'Lisa', 'Bart')
创建tuple和创建list唯一不同之处是用( )替代了[ ]。
3.tuple没有 append()方法,也没有insert()和pop()方法。
2.>>> t = ('Adam', 'Lisa', 'Bart')
创建tuple和创建list唯一不同之处是用( )替代了[ ]。
3.tuple没有 append()方法,也没有insert()和pop()方法。
2015-01-09
>>> L.pop(2)
'Paul'
>>> print L
['Adam', 'Lisa', 'Bart']
删除
'Paul'
>>> print L
['Adam', 'Lisa', 'Bart']
删除
2015-01-09
score = 55
if not score < 60:
print 'passed'
else:
print 'failed'
if not score < 60:
print 'passed'
else:
print 'failed'
2015-01-08