摘要: 1.什么是元组 2.元组的创建方式 '''第一种创建方式,使用()''' t=('Python','world',99) print(t) print(type(t)) t2='Python','world',99 print(t2) print(type(t2)) t3=('Python',) # 阅读全文
posted @ 2021-12-01 00:07 从精通到陌生 阅读(71) 评论(0) 推荐(0) 编辑