str. list. dict. tuple.的使用
Posted markfo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了str. list. dict. tuple.的使用相关的知识,希望对你有一定的参考价值。
1.判断一个字符是否在str中,判断一个对象是否在list中,判断一个键是否在一个字典中,判断一个对象是否在一个tuple中,均可使用in,相反可以使用not in
2.str中的format可以使 { } 中的替换成传入的参数
e. test = ‘i am {name}, {age}‘
test = test.format(name=‘fyh‘, age=19)
对于上式,也可以使用一个字典进行传入,但要进行 ** 的处理
test = test.format(**{‘name‘: ‘fyh‘, ‘age‘ : 19})
或者直接可以用format_map传入字典类型即可
test = test.format_map({‘name‘: ‘fyh‘, ‘age‘ : 19})
3.expandtabs 可以将str中每个 之前的内容分成固定长度
# test = "username email password
djkafsda[email protected] 123
djkafsda[email protected] 123
djkafsda[email protected] 123
"
# v = test.expandtabs(30)
# print(v)
4.
以上是关于str. list. dict. tuple.的使用的主要内容,如果未能解决你的问题,请参考以下文章
list tuple dict (列表,元祖,字典间的相互转换)
python基础数据类型: int bool str list tuple dict
7str字符串int整数list列表dict字典set集合tuple元祖功能详解