Python——字符串(python programming)

时间:2023-03-08 16:14:53

p

ython——字符串

①加法 连接两个字符串

②乘法  复制字符串

python——转义字符

\n 换行

\' 单引号

\'' 双引号

\\ 反斜杠

raw字符串:无视转义字符

 

Python——字符串(python programming)

转义:

Python——字符串(python programming)

字符串和数字相互转化

函数str(), int(), float()

Python——字符串(python programming)

字符串方法:查找

字符串的方法函数s1.find(s2)在字符串s1中查找字符串s2,若找到,返回首次找到的位置

Python——字符串(python programming)

-1 表示没找到

字符串替换

Python——字符串(python programming)

字符串:大小写转换

s.upper()

s.lower

s.capitalize()  一句话首字母大写

s.title()   单词首字母大写

Python——字符串(python programming)

格式化字符串

s1 = WeiZhao

s2 = Miss.+s1

可得结果:s2=Miss.WeiZhao

Python——字符串(python programming)

列表list

Python——字符串(python programming)

修改列表中某位置(与数组不同点)

Python——字符串(python programming)

字典(哈希表)无序

元素通过键来存储

Python——字符串(python programming)

使用update 合并更新哈希表

Python——字符串(python programming)

Python——字符串(python programming)

元组

Python——字符串(python programming)

转载自:https://www.cnblogs.com/wwwwwei/p/10471535.html