溫馨提示×

python list函數(shù)的用法是什么

小億
226
2023-10-11 00:11:56
欄目: 編程語言

Python中的list()函數(shù)是用于創(chuàng)建一個新的列表對象。它可以將一個可迭代對象(如字符串、元組、字典、集合等)轉(zhuǎn)換為列表。

list()函數(shù)的用法如下:

  1. 將可迭代對象轉(zhuǎn)換為列表:
iterable = 'hello'
lst = list(iterable)
print(lst)  # ['h', 'e', 'l', 'l', 'o']
  1. 創(chuàng)建空列表:
empty_lst = list()
print(empty_lst)  # []
  1. 可以接收一個參數(shù)n,創(chuàng)建包含n個重復(fù)元素的列表:
repeated_lst = list('abc' * 3)
print(repeated_lst)  # ['a', 'b', 'c', 'a', 'b', 'c', 'a', 'b', 'c']

需要注意的是,list()函數(shù)是Python內(nèi)置函數(shù),不需要導(dǎo)入任何模塊即可使用。

0