摘要: 第一阶段 第六章 6.7元组 text1 = ('周杰伦', 11, ['football', 'music']) index = text1.index(11) print(index) print(text1[0]) del text1[2][1] print(text1) text1[2].a 阅读全文
posted @ 2023-06-14 17:20 ``飘`` 阅读(10) 评论(0) 推荐(0)