Python 数字,字符串,列表,元组,字典整理

Posted 159357zzx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 数字,字符串,列表,元组,字典整理相关的知识,希望对你有一定的参考价值。




##################################################整理###########################################
PS : 如下必掌握

# 1 数字
# int(..)

# 2 字符串
# replace /find /join /strip /startwith /split /upper /lower /format

# 格式化方法一:
template = "i am name,age : age"
v = template.format(name = "ZZX",age = "19")
print(v)

#格式化方法二:
template = "i am name,age : age"
v = template.format(**"name":"ZZX","age":"19")
print(v)

#三,列表
# append,extend,insert
#索引,切片,循环

#四,元组
#忽略
#索引,切片,循环, 一级元素不可被修改

#五,字典
#ger/update/keys/values/items
#索引

dic =
"k1":"v1"


v1 = "k1" in dic.keys()
print(v1)

v1 = "v1" in dic.values()
print(v1)

#六 布尔值
# bool(..)
# None "" () [] 0 ==> False
# bool([]) bool(()) bool("")... ==>False

以上是关于Python 数字,字符串,列表,元组,字典整理的主要内容,如果未能解决你的问题,请参考以下文章

字典 元组

Python3学习笔记--数据类型:字符串列表元组数字字典集合

Python中高级变量类型(列表,元组,字典,字符串,公共方法...)

python3学习笔记——数字字符串列表字典元组

python基础-列表 元组 集合 字典区别和用法

Python学习之旅---数据类型(数字字符窜列表元组字典布尔值)