标签:div oob google 不能 color code pytho 修改 tuple
Python 的元组与列表类似,不同之处在于元组的元素不能修改。
元组使用小括号(),列表使用方括号[]。
元组创建很简单,只需要在括号中添加元素,并使用逗号隔开即可。
如下实例:
>>> tup1 = (‘Google‘, ‘Runoob‘, 1997, 2000); >>> tup2 = (1, 2, 3, 4, 5 ); >>> tup3 = "a", "b", "c", "d"; # 不需要括号也可以 >>> type(tup3) <class ‘tuple‘>
标签:div oob google 不能 color code pytho 修改 tuple
原文地址:https://www.cnblogs.com/paulzhang511/p/8796637.html