Python Tuple(元组) tuple()方法 描述 Python 元组 tuple() 函数将列表转换为元组。 语法 tuple()方法语法: tuple( seq ) 参数 seq -- 要转换为元组的序列。 返回值 返回元组。 实例 以下实例展示了 tuple()函数的使用方法: 实例 1 >>>tuple([1,2,3,4]) (1, 2, 3, 4) >>> tuple({1:2,3:4}) #针对字典 会返回字典的key组成的tuple (1, 3) >>> tuple((1,2,3,4)) #元组会返回元组自身 (1...