tuple3

  • Python编程-元组操作

    元组(Tuple)是一种有序且不可更改的集合,允许重复的成员。 元组的格式:tuple = (1,2,3,4,5,6) 1、创建元组 num = () 2、删除元组 del tup…

    python 2022年7月17日