python基础知识
摘要:
a=(1) type(a)<class 'int'>>>> a=(1,)>>> type(a)<class 'tuple'> a=[1]>>> type(a)<class 'list'> a=list(range(100))>>> a[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 阅读全文
posted @ 2020-02-04 12:13 gisai 阅读(122) 评论(0) 推荐(0) 编辑