####################### 整理 #################app
# 1、數字
# int(..)spa
# 2、字符串
# replace(替換)/find/join/strip(移除)/startswith/split(分割)/upper(轉換爲大寫的)/lower(轉換爲小寫)/format(佔位符替換爲指定的值)
# tempalte = "i am {name}, age : {age}"
# # v = tempalte.format(name='alex',age=19)
# v = tempalte.format(**{"name": 'alex','age': 19})
# print(v)orm
# 3、列表
# append(追加元素到原來列表後面)、extend(s1列表值加進s2列表中去)、insert(指定位置插入元素)
# 索引、切片、循環索引
# 4、元組
# 忽略
# 索引、切片、循環 一級元素不能被修改ip
# 5、字典
# get/update/keys/values/items
# for,索引字符串
# dic = {
# "k1": 'v1'
# }get
# v = "k1" in dic
# print(v)it
# v = "v1" in dic.values()
# print(v)form
# 6、布爾值
# 0 1
# bool(...)
# None "" () [] {} 0 ==> Falsedate