python 运算符和字符串

Posted brucekim

tags:

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

1、加减乘除

2、% —— 取余

3、// —— 取商

  ** —— 幂

4、判断某个东西是否在某个东西里面包含 in  not in

5、数字、字符串、布尔值(true、false)

 

6、6个字符串的魔法

join

#每个字符串中插入字符
# test = ‘功夫不负有心人‘
# #t = ‘ ‘
# v = ‘ ‘.join(test)
# print(v)

 

split

#分割字符串

#分割字符串,后面不跟参数全部分割
test = ‘asdfkjhsdfssf‘
v = test.split(s,1)
print(v)

 

find

test = alex
v = test.find(e)
print(v)

 

 

strip

#去除空白
test =   alex
v = test.strip()
print(v)

 

upper

lower

#判断是否全为小写,upper为转换小写
test = Alex
v1 = test.islower()
v2 = test.upper()
print(v1,v2)

 

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

Python 3学习笔记

如何在 python 中并行化以下代码片段?

python+spark程序代码片段

Python中verbaim标签使用详解

常用python日期日志获取内容循环的代码片段

Python代码阅读(第25篇):将多行字符串拆分成列表