list index倒叙访问值得注意的地方,除了不能越界外,应注意索引(index)并不是从0开始,而是-1,因为-0与0冲突兼没意义。
2015-03-11
L = [95.5,85,59]
print L[0]
print L[1]
print L[2]
print L[3]
print L[0]
print L[1]
print L[2]
print L[3]
2015-03-11
score_list = ["Adam",95.5,"Lisa",85,"Bart",59]
print score_list
print score_list
2015-03-11
a = 'python'
print 'hello,', a or 'world'
输出的是hello, python。原因:a为非空字符串,即True,or操作符因此不用判断第二个条件,返回第一个结果'python'。
b = ''
print 'hello,', b or 'world'
输出的是hello,world。原因是b为空字符串,即False,or操作符返回第二个条件。
print 'hello,', a or 'world'
输出的是hello, python。原因:a为非空字符串,即True,or操作符因此不用判断第二个条件,返回第一个结果'python'。
b = ''
print 'hello,', b or 'world'
输出的是hello,world。原因是b为空字符串,即False,or操作符返回第二个条件。
2015-03-11
r标记的字符串表示raw string
u标记的字符串表示unicode encoding
但是不能同时r+u。如何能做到呢?
u标记的字符串表示unicode encoding
但是不能同时r+u。如何能做到呢?
2015-03-11
s = set(['Adam', 'Paul'])
L = ['Adam', 'Lisa', 'Bart', 'Paul']
for name in L:
#print name
if name in s:
s.remove(name)
else:
s.add(name)
print s
L = ['Adam', 'Lisa', 'Bart', 'Paul']
for name in L:
#print name
if name in s:
s.remove(name)
else:
s.add(name)
print s
2015-03-10
1.a只有一个盘的情况,直接a--c
2.a多个盘的情况,先把a上面的n-1个盘子借助c转移到b(调用递归),然后把a最后一个盘移到c,再把b的全部盘子借助a全部转移到c(调用递归)
2.a多个盘的情况,先把a上面的n-1个盘子借助c转移到b(调用递归),然后把a最后一个盘移到c,再把b的全部盘子借助a全部转移到c(调用递归)
2015-03-09