Python学习,第四课 - 字符串相关操作
这次主要说说Python中字符串的使用方法详解 capitalize 首字母大写 print('chengshou'.capitalize()) #输出结果:Chengshou title 修改成标题模式 - 既单词的首字母大写 print('cheng shou'.title()) #输出结果:Cheng Shou count 查询字符在字符串中的个数 print('chengshou'.count("h")) #输出结果:2 center 字符不足数量则补齐 print('chengshou'.center(30, '-')) #输出结果:----------chengshou----------- #可以看到在字符的左右两边加上了多个“-”符号,知道字符串满30个字符 endswith 判断字符串是否已制定字符结尾 print('chengshou'.endswith('s')) #输出结果:False print('chengshou'.endswith('u')) #输出结果:True find 查找字符串的索引位置 print('chengshou'.find('shou')) #输出结果:5 isalnum 是否只有阿拉伯数字和英文字母 print('ChengShou99'.isalnum()) #输出结果:True print('@!