摘要:
字典(Dictionary) 字典是一个无序、可变和有索引的集合。在 Python 中,字典用花括号编写,拥有键和值。 字典基础 #创建字典 dict thisdict={ "age":"18", "year":'2021', "month":"8" } #访问项目 #您可以通过在方括号内引用其键名 阅读全文
摘要:
集合(Set) 集合是无序和无索引的集合。在 Python 中,集合用花括号编写。 基础用法 #创建集合 (集合是无序的,因此您无法确定项目的显示顺序。) thisset={'apple','banana'} print(thisset)#{'banana', 'apple'} #for循环遍历集合 阅读全文
摘要:
元组(Tuple) 元组是有序且不可更改的集合。在 Python 中,元组是用圆括号编写的。 元组基础 #创建元组 thistuple=('apple','orange') print(thistuple)#('apple', 'orange') #访问tuple的项目 print(thistupl 阅读全文