python之字符串函数

Posted 有猿人

tags:

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

1.  endswith()  startswith()

技术分享图片
1 # 以什么什么结尾
2 # 以什么什么开始
3 test = "alex"
4 v = test.endswith(ex)
5 v = test.startswith(ex)
6 print(v)
View Code

2. expandtabs()

技术分享图片
1 test = "1	2345678	9"
2 v = test.expandtabs(6)
3 print(v,len(v))
View Code

3. find()

技术分享图片
1 # 从开始往后找,找到第一个之后,获取其未知
2 # > 或 >=
3 test = "alexalex"
4 # 未找到 -1
5 v = test.find(e)
6 print(v)
View Code

4.  index()

技术分享图片
1 # index找不到,报错   忽略
2 test = "alexalex"
3 v = test.index(a)
4 print(v)
View Code

5. format()  format_map()

技术分享图片
 1 # 格式化,将一个字符串中的占位符替换为指定的值
 2 test = i am {name}, age {a}
 3 print(test)
 4 v = test.format(name=alex,a=19)
 5 print(v)
 6 
 7 test = i am {0}, age {1}
 8 print(test)
 9 v = test.format(alex,19)
10 print(v)
11 
12 # 格式化,传入的值 {"name": ‘alex‘, "a": 19}
13 test = i am {name}, age {a}
14 v1 = test.format(name=df,a=10)
15 print(v1)
16 v2 = test.format_map({"name": alex, "a": 19})
17 print(v2)
View Code

6. isalnum()

技术分享图片
1 # 字符串中是否只包含 字母和数字
2 test = "er;"
3 v = test.isalnum()
4 print(v)
View Code

 

以上是关于python之字符串函数的主要内容,如果未能解决你的问题,请参考以下文章

python调试之pdb调试工具

Python代码阅读(第38篇):根据谓词函数和属性字符串构造判断函数

Python之内置函数

python+spark程序代码片段

《Python学习之路 -- Python基础之切片》

Python之函数