python元组的定义方式
li函数用法?
li函数用法?
li函数是Python的内置函数。
它可以将任何可迭代数据转换为列表类型,并返回转换后的列表。当参数为空时,list函数可以创建一个空列表。
三、Ii函数的使用
1. 创建一个空列表(无参调用list函数)gtgtgt test list()
2. 将字符串转换为列表gtgtgt test list(#39cat#39)
3. 将元组转换为列表gtgtgt a_tuple (#39I love Python.#39, #39I also love HT)
4. 将字典转换为列表gtgtgt a_dict {#39China#39:#39Beijing#39, #39Russia#39:#39Moscow#39}
gtgtgt test list(a_dict)
注意:将字典转换为列表时,会将字典的值舍去,而仅仅将字典的键转换为列表。如果想将字典的值全部转换为列表,可以考虑使用字典方法()。
5. 将集合转换为列表gtgtgt a_set {1, 4, #39sdf#39}
python怎么创建一个空元组?
在python中,我们也可以创建一个没有任何元素的元组 。 使用一对圆括号()创建一个空元组 。
Syntax:
句法:
tuple_name ()
Example 1:
范例1:
# Python empty tuple creation`
tuple1 ()
# printing tuple
print(#34tuple1: #34, tuple1)
# printing length
print(#34len(tuple1): #34, len(tuple1))
# printing type
print(#34type(tuple1): #34, type(tuple1))
Output
输出量
tuple1: ()
len(tuple1): 0
type(tuple1):
Example 2:
范例2:
We can also create an empty tuple by initializing the tuple with tuple() – generally this method is used to clear/reinitialize the tuple.
也可以通过使用tuple()初始化元组来创建一个空元 组 -通常,此方法用于清除/重新初始化元组。
# Python empty tuple creation`
tuple1 tuple()
# printing tuple
print(#34tuple1: #34, tuple1)
# printing