Python 常用函數

來源:互聯網
上載者:User
文章目錄
  • python zip函數說明
Python 常用函數python zip函數說明

zip函數接受任意多個序列作為參數,將所有序列按相同的索引組合成一個元素是各個序列合并成的tuple的新序列,新的序列的長度以參數中最短的序列為準。另外(*)操作符與zip函數配合可以實現與zip相反的功能,即將合并的序列拆成多個tuple。
①tuple的新序列
>>>>x=[1,2,3],y=['a','b','c']
>>>zip(x,y)
[(1,'a'),(2,'b'),(3,'c')]

②新的序列的長度以參數中最短的序列為準.
>>>>x=[1,2],y=['a','b','c']
>>>zip(x,y)
[(1,'a'),(2,'b')]

③(*)操作符與zip函數配合可以實現與zip相反的功能,即將合并的序列拆成多個tuple。
>>>>x=[1,2,3],y=['a','b','c']
>>>>zip(*zip(x,y))
[(1,2,3),('a','b','c')]

 2. python 內建函數map說明

  map(functioniterable...)

   map接收一個函數和一個可迭代對象(如列表)作為參數,用函數處理每個元素,然後返回新的列表。  

 假如你從檔案中讀取多行資料,而每行資料是如下的格式:

 59.4    60.4    58.4      120.2   121.2   119.2

data = []

f=open('a.txt')

for line in f.readlines():

     data.append(map(float, line.split()))

 字串的split方法用來將字串分割成序列。

 3.Python為string對象提供了轉換大小寫方法:upper() 和 lower()。還不止這些,Python還為我們提供了首字母大寫,其餘小寫capitalize()方法,以及所有單字首大寫,其餘小寫title()方法。

s = 'hEllo pYthon' print s.upper() print s.lower() print s.capitalize() print s.title() 

 輸出結果: 
 HELLO PYTHON 
 hello python 
 Hello python 
 Hello Python 

 判斷大小寫 
 Python提供了isupper(),islower(),istitle()方法用來判斷字串的大小寫。注意的是:如果對Null 字元串使用isupper(),islower(),istitle(),返回的結果都為False

 4. Python中*args和**kwargs的用法

先來看個例子:

def foo(*args, **kwargs):    print 'args = ', args    print 'kwargs = ', kwargs    print '---------------------------------------'if __name__ == '__main__':    foo(1,2,3,4)    foo(a=1,b=2,c=3)    foo(1,2,3,4, a=1,b=2,c=3)    foo('a', 1, None, a=1, b='2', c=3)
輸出結果如下:

args =  (1, 2, 3, 4) 
kwargs =  {} 
--------------------------------------- 
args =  () 
kwargs =  {'a': 1, 'c': 3, 'b': 2} 
--------------------------------------- 
args =  (1, 2, 3, 4) 
kwargs =  {'a': 1, 'c': 3, 'b': 2} 
--------------------------------------- 
args =  ('a', 1, None) 
kwargs =  {'a': 1, 'c': 3, 'b': '2'} 
---------------------------------------

可以看到,這兩個是python中的可變參數。*args表示任何多個無名參數,它是一個tuple;**kwargs表示關鍵字參數,它是一個dict。並且同時使用*args和**kwargs時,必須*args參數列要在**kwargs前,像foo(a=1, b='2', c=3, a', 1, None, )這樣調用的話,會提示法錯誤“SyntaxError: non-keyword arg after keyword arg”。

 

呵呵,知道*args和**kwargs是什麼了吧。還有一個很漂亮的用法,就是建立字典:

    def kw_dict(**kwargs):        return kwargs    print kw_dict(a=1,b=2,c=3) == {'a':1, 'b':2, 'c':3}

其實python中就帶有dict類,使用dict(a=1,b=2,c=3)即可建立一個字典了。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.