s = set(['Adam', 'Lisa', 'Bart', 'Paul'])
ss = set()
for i in s:
i = i.lower()
ss.add(i)
print 'adam' in ss
print 'bart' in ss
ss = set()
for i in s:
i = i.lower()
ss.add(i)
print 'adam' in ss
print 'bart' in ss
2016-02-03
dict的第一个特点是查找速度快,无论dict有10个元素还是10万个元素,查找速度都一样。而list的查找速度随着元素增加而逐渐下降。
不过dict的查找速度快不是没有代价的,dict的缺点是占用内存大,还会浪费很多内容,list正好相反,占用内存小,但是查找速度慢。
由于dict是按 key 查找,所以,在一个dict中,key不能重复。
dict的第二个特点就是存储的key-value序对是没有顺序的!这和list不一样:
不过dict的查找速度快不是没有代价的,dict的缺点是占用内存大,还会浪费很多内容,list正好相反,占用内存小,但是查找速度慢。
由于dict是按 key 查找,所以,在一个dict中,key不能重复。
dict的第二个特点就是存储的key-value序对是没有顺序的!这和list不一样:
2016-02-03
print [int(x+y+x) for x in '123456789' for y in '0123456789']
2016-02-03
print L[None]
# TypeError: list indices must be integers, not NoneType
还是要-1
# TypeError: list indices must be integers, not NoneType
还是要-1
2016-02-02
a = 'python'
print 'hello,', a or 'world' # hello, python
b = ''
print 'hello,', b or 'world' # hello, world
print 'hello,', a or 'world' # hello, python
b = ''
print 'hello,', b or 'world' # hello, world
2016-02-02
print 2.5 + 10 / 4
print 2.5 + 10.0 / 4
print 2.5 + float(10) / 4
print 2.5 + 10.0 / 4
print 2.5 + float(10) / 4
2016-02-02
s = 'Python was started in 1989 by "Guido".\npython is free and easy to learn.'
print s
print s
2016-02-02
L = []
for a in range(1,10):
for b in range(0,10):
for c in range(0,10):
if(a==c):
L.append(a*100+b*10+c)
print(L)
for a in range(1,10):
for b in range(0,10):
for c in range(0,10):
if(a==c):
L.append(a*100+b*10+c)
print(L)
2016-02-02