判斷列表中是否含有某元素
if element in list:
orif element not in list:
、dir()
>>> dir(list)
['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__delslice__', '__doc__',
'__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getslice__', '__gt__',
'__hash__', '__iadd__', '__imul__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mul__',
'__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__reversed__', '__rmul__',
'__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__', '__subclasshook__',
list.extend(seq)將序列seq的內容新增到list中
list.pop(index)刪除並返回指定位置的物件,預設刪除最後乙個元素
排序示例**
test1:去掉列表中每個元素頭尾的空格
freshfruit = [' banana', ' loganberry ', 'passion fruit ']
list = [str.strip() for str in freshfruit]
test2:把列表中,大於3的元素,乘以2
list = [2,4,6]
[x*2 for x in list if x>2]
test3:把列表1的每乙個元素和列表2的每乙個元素相乘
>>> lst1 = [2, 4, 6]
>>> lst2 = [4, 3, -9]
>>> [x*y for x in lst1 for y in lst2]
[8, 6, -18, 16, 12, -36, 24, 18, -54]
test4.獲取[0-10)的平方
[x**2 for x in range(10)]
或 map(lambdax : x*x, range(10))
test5.獲取[0-10)中奇數的平方
[x**2 for x in range(10) if x%2==1]
或[x**2 for x in filter(lambdax : x%2, range(10) )]
for in 的其他列表操作
test6.合併兩個列表
['a','b','c'] , ['1','2','3'] ==> ['a','b','c','1','2','3']
list1 + list2
orlist1.extend(list2)
['a','b','c'] , ['1','2','3'] ==> [['a','b','c'],['1','2','3']]
enumerate()函式
>>> list = ['abc','def','ghi']
>>> for i, e in enumerate(list):
... print i, e
...
0 abc
1 def
2 ghi
test6
zip()函式
title()首字母變大寫
>>> list1 = ['a','b','c']
>>> list2 = ['a','b','c']
>>> for i, j in zip(list1,list2):
... print ('%s %s' % (i, j) )
...
a ab b
c c>>> list1 = ['a','b','c']
>>> list2 = ['a','b','c']
>>> for i, j in zip(list1,list2):
... print ('%s %s' % (i, j) ).title()
...
a ab b
c c>>> list1 = ['abc','bcd','cde']
>>> list2 = ['abc','bcd','cde']
>>> for i, j in zip(list1,list2):
... print ('%s %s' % (i, j) ).title()
...
abc abc
bcd bcd
cde cde
#平衡點問題,熟悉list的基本操作
li = [1,3,5,7,8,25,4,19, 1]
def main():
balances =
length = len(li)
p = 1
while true:
if p == length-1:
break
if sum(li[:p]) == sum(li[p+1:]):
p +=1
return balances
if __name__ == '__main__' :
bals = main()
print bals
支配數/支配點問題
支配數:陣列中某個元素出現的次數大於陣列總數的一半時就成為支配數,其所在位序成為支配點;比如int a = ;3為支配數,0,1,4分別為支配點;
要求:返回任何乙個支配點
本問題可歸結為眾數問題(統計學範疇),即一組資料中出現次數最多的那個數值,它可以沒有也可以為多個。
questiton1:輸出任意支配點即可
question2:輸出支配數及其所有支配點
//question1
li = [1,3,4,3,3]
def main():
length = len(li)
mid = length/2
print mid
temp_li =
for t in li:
if t not in temp_li:
for e in temp_li:
i = 0
count = 0
index = 0
while true:
if i == length:
break
if li[i] == e:
count += 1
#index = i
if count > mid:
print li.index(e) , e
break
i += 1
if __name__ == "__main__":
main()
如何比較兩個列表?
『==』為標準型別
物件比較 操作符,比較的是物件的數值而不是物件本身。
『is』為標準型別物件身份比較 操作符。比較兩個物件是否是同乙個物件(兩個變數是否是同乙個引用)。
>>> list1 = ['xyz','abc']
>>> list2 = ['xyz','abc']
>>> list3 = ['abc','xyz']
>>> list1 == list2
true
>>> list1 == list3
false
>>> list1 > list3
true
>>> list1 is list2
false
何時使用列表或元組?
列表和元組怎麼互相轉化?如何修改元組的元素?
python 列表和元組基礎
二.元組 一.列表 1.列表的其他操作1.insert list 1,2,3,4,5 list.insert 0,3 print list 2.extend list.extend hello print list 3.del list 1 2,1,6,3,4,2 del list 1 5 prin...
python基礎知識 列表和元組
1.序列 python中的序列包含6種,分別是列表,元組,字串,unicode字串,buffer物件,xrange物件。1.1通用序 列操作 包括 索引 index 分片 slicing 加 adding 乘 multiplying 檢查成員資格,計算序列長度,找出最大元素,最小元素。我們用列表來說...
Python列表和元組
序列可修改,而元組不能。eda edward 42 序列可包含其它列表 edward edward 43 john john 44 database edward,john database edward 43 john 44 序列的分片 nubs range 10 nubs 0,1,2,3,4,5...