li函數(shù)用法?
li函數(shù)是Python的內(nèi)置函數(shù)。
它可以將任何可迭代數(shù)據(jù)轉(zhuǎn)換為列表類型,并返回轉(zhuǎn)換后的列表。當(dāng)參數(shù)為空時(shí),list函數(shù)可以創(chuàng)建一個(gè)空列表。
三、Ii函數(shù)的使用
1. 創(chuàng)建一個(gè)空列表(無(wú)參調(diào)用list函數(shù))>>> test = list()
2. 將字符串轉(zhuǎn)換為列表>>> test = list('cat')
3. 將元組轉(zhuǎn)換為列表>>> a_tuple = ('I love Python.', 'I also love HT)
4. 將字典轉(zhuǎn)換為列表>>> a_dict = {'China':'Beijing', 'Russia':'Moscow'}
>>> test = list(a_dict)
注意:將字典轉(zhuǎn)換為列表時(shí),會(huì)將字典的值舍去,而僅僅將字典的鍵轉(zhuǎn)換為列表。如果想將字典的值全部轉(zhuǎn)換為列表,可以考慮使用字典方法dict.values()。
5. 將集合轉(zhuǎn)換為列表>>> a_set = {1, 4, 'sdf'}