python学习之元组

时间:2022-11-27 10:44:06

#coding:utf-8
# __author__ = 'Administrator'
#元组:不可变序列

#空元组
mm=()
print mm
#只有一个值的元组
mm=(1,)
print mm
x=1,2,3
print x
print x[1]
print x[:2]
#1.tuple 函数功能与list函数基本一样:以一个序列作为参数并把他转换为元组(如参数本身就是元组则原样返回)
print tuple([1,2,3])
print tuple('abc')
print tuple(('a','b','c'))