溫馨提示×

python中怎么用list()函數(shù)創(chuàng)建列表

小億
121
2023-10-20 06:14:01
欄目: 編程語言

在Python中,可以使用list()函數(shù)來創(chuàng)建一個空列表或從其他可迭代對象(如字符串、元組、集合等)中創(chuàng)建一個新的列表。

以下是幾種使用list()函數(shù)創(chuàng)建列表的方法:

  1. 創(chuàng)建一個空列表:
my_list = list()
  1. 從字符串中創(chuàng)建列表,字符串中的每個字符都是列表的一個元素:
my_list = list("Hello")
# 輸出結(jié)果: ['H', 'e', 'l', 'l', 'o']
  1. 從元組中創(chuàng)建列表:
my_tuple = (1, 2, 3)
my_list = list(my_tuple)
# 輸出結(jié)果: [1, 2, 3]
  1. 從集合中創(chuàng)建列表:
my_set = {1, 2, 3}
my_list = list(my_set)
# 輸出結(jié)果: [1, 2, 3]
  1. 從range()函數(shù)中創(chuàng)建列表:
my_list = list(range(1, 5))
# 輸出結(jié)果: [1, 2, 3, 4]

請注意,list()函數(shù)只能將可迭代對象轉(zhuǎn)換為列表,它不適用于直接將其他類型(如整數(shù)、浮點(diǎn)數(shù))轉(zhuǎn)換為列表。如果需要創(chuàng)建一個只包含一個元素的列表,可以使用方括號括起來的單個元素來創(chuàng)建,例如my_list = [1]

0