元组的创建 1. 通过()创建元组。小括号可以省略。 2.通过 tuple()创建元组 tuple(可迭代的对象)例如: b = tuple() #创建一个空元组对象 b = tuple("abc") 来源:博客园作者:蚂蚁KO大象链接:https://www.cnblogs.com/elephant-study/p/11572398.html 标签 元组