Python的列表

python中的列表相似于C语言的数组(列表就是打了激素的数组) >>> #建立列表,不须要声明类型(Python变量标识符没有类型) >>> information= ["student0", "student1", "student2"] >>> print(information) ['student0', 'student1', 'student2'] >>> print(informat
相关文章
相关标签/搜索