创新互联python教程:
创新互联主要从事做网站、网站设计、网页设计、企业做网站、公司建网站等业务。立足成都服务岱山,10余年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18982081108
写一个 Python 程序将列表转换成元组。在 Python 中,我们有一个元组函数,它将列表项转换为元组。这个 Python 示例使用元组函数将列表转换为元组。
intList = [11, 22, 33, 44 ,55]
print("List Items = ", intList)
print("List Data Type = ", type(intList))
intTuple = tuple(intList)
print("\nTuple Items = ", intTuple)
print("Tuple Data Type = ", type(intTuple))
它允许用户输入列表项,并使用不同的选项将该列表转换为元组。
list1 = []
number = int(input("Enter the Total List Items = "))
for i in range(1, number + 1):
value = int(input("Enter the %d List value = " %i))
list1.append(value)
print("List Items = ", list1)
print("List Data Type = ", type(list1))
intTuple = tuple(list1)
print("\nTuple Items = ", intTuple)
print("Tuple Data Type = ", type(intTuple))
intTuple1 = (*list1,)
print("\nTuple Items = ", intTuple1)
print("Tuple Data Type = ", type(intTuple1))
Enter the Total List Items = 4
Enter the 1 List value = 20
Enter the 2 List value = 50
Enter the 3 List value = 120
Enter the 4 List value = 90
List Items = [20, 50, 120, 90]
List Data Type =
Tuple Items = (20, 50, 120, 90)
Tuple Data Type =
Tuple Items = (20, 50, 120, 90)
Tuple Data Type =
网站标题:Python程序:将列表转换为元组
网站网址:http://www.shufengxianlan.com/qtweb/news35/127935.html
网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联