• Text Type

    • str
  • Numeric Types

    • int, float, complex
    • complex 复数
    = complex(1) # Passing single parameter 
    = complex(1,2) # Passing both parameters
     
    (1+0j)
    (1+2j)
  • Sequence Types

    • list, tuple, range, set
  • Mapping Type

    • dict
  • Slice: 左闭右开

Set

myset = {"apple", "banana", "cherry"}
myset.add(word)
All elements are unique
A set is a collection which is unorderedunchangeable, and unindexed.
Note: Set items are unchangeable, but you can remove items and add new items.
newtup = tuple(set(tup)–{'PYTHON'}) # 去重同时删除数据项

Tuple

Elements can’t be changed

  • len
  • max
  • min
  • tuple(seq)