题解 | #增加元组的长度#
增加元组的长度
https://www.nowcoder.com/practice/31d26c9dbe454cf9a60c72c72ca958df
import sys list1 = tuple(range(1,6)) list2 = tuple(range(6,11)) list3 = list1+list2 print(list1,len(list1),list3,len(list3),sep='\n')#python刷题#
Python刷题 文章被收录于专栏
Python刷题记录