python,字符串方法
1.capitalize() 首字母大写
text = "hello word"
text2 = text.capitalize()
print(text2)
2.1.casefold() 字符串小写(可以变成小写的范围比lower大)
text = "Hello Word"
text2 = text.casefold()
print(text2)
2.2.lower() 字符串小写
text = "Hello Word"
text2 = text.lower()
print(text2)
3.center() 设置字符串的宽度,并把内容居中。可以设置其中填充字符的样式,但是只能用一个字符
text = "Hello Word"
text2 = text.center(20,"空")
print(text2)
4.count() 在字符串中寻找子序列出现的次数,可以设置寻找的起始位置和结束位置
text = "Hello Word"
text2 = text.count('l',3,4)
print(text2)
5.endswith() 判断一个字符串是否是以子序列结束,可以设置寻找的起始位置和结束位置
6.startswith() 判断一个字符串是否是以子序列开头,可以设置寻找的起始位置和结束位置
text = "Hello Word"
text2 = text.endswith('rd',8,10)
text3 = text.startswith('rd',8,10)
print(text2)
print(text3)
7.1.find() 从一个字符串头部寻找指定的子序列,如果找到了则返回位置,否则返回-1
text = "Hello Word"
text2 = text.find('o',5,9)
print(text2)
7.2.index() 从一个字符串头部寻找指定的子序列,如果找到了则返回位置,否则报错
text = "Hello Word"
text2 = text.index("H")
print(text2)
8.1.format() 将字符串中的占位符替换成指定的值,如果占位符中为空,按顺序替换
text = "{Hello} {Word}"
text3 = "{}{}"
text2 = text.format(Hello='no',Word='no')
text4 = text3.format('no','no')
print(text2,text4)
8.2.format_map() 像字典一样使用
text = "{Hello} {Word}"
text2 = text.format_map({"Hello":"no","Word":8})
print(text2)
9.1.isalnum() 判断一个字符串是否全是字母数字
text = "HelloWord"
text2 = text.isalnum()
print(text2)
9.2.isalpha() 判断一个字符串是否全是字母,汉字
text = "HelloWord"
text2 = text.isalpha()
print(text2)
10.expandtabs() 断句
text = "Hello\tWord"
text2 = text.expandtabs(20)
print(text2)
11.1.isdecimal() 判断一个字符串是否全是数字
11.2.isdigit() 判断一个字符串是否全是数字,但是数字的范围更大
11.3.isnumeric() 中文数字也可以
text = "②"
text2 = text.isdecimal()
text3 = text.isdigit()
print(text2,text3)
12.isidentifier() 判断字母,数字,下划线,标识符,def,class
text = "a1_def"
text2 = text.isidentifier()
print(text2)
13.isprintable() 判断是否存在转义符。如果没有则返回True
text = "123\t45"
text2 = text.isprintable()
print(text2)
14.isspace() 判断是否全是空格
text = " "
text2 = text.isspace()
print(text2)
15.1.istitle() 判断每个单词第一个都是大写
text = "Hello Word"
text2 = text.istitle()
print(text2)
15.2.title() 把字符串转换成标题
text = "hello word"
text2 = text.title()
print(text2)
16.join() 在字符串每一个字符之间加上子序列
text = "hello word"
text2 = "*".join(text)
print(text2)
17.1.ljust() 设置一个字符串的宽度,如果长度不够则在右边加上指定的字符
17.2.rjust() 设置一个字符串的宽度,如果长度不够则在左边加上指定的字符
text = "hello word"
text2 = text.ljust(20,"")
text3 = text.rjust(20,"")
print(text2,text3)
18.zfill() 设置一个字符串的宽度,如果长度不够则在左边加上0
text = "hello word"
text2 = text.zfill(20)
print(text2)
19.1.lower() 把一个字符串全部变成小写
19.2.islower() 判断一个字符串是否全是小写
text = "hello word"
text2 = text.lower()
text3 = text.islower()
print(text2,text3)
20.1.upper() 把一个字符串全部变成大写
20.2.isupper() 判断一个字符串是否全是大写
text = "hello word"
text2 = text.upper()
text3 = text.isupper()
print(text2,text3)
21.1.strip() 去掉字符串两侧的空格
21.2.lstrip() 去掉字符串左侧的空格
21.3.rstrip() 去掉字符串右侧的空格
text = " hello word "
text2 = text.lstrip()
text3 = text.rstrip()
text4 = text.strip()
print(text2)
print(text3)
print(text4)
22.1.partition() 分割出第一个子序列
text = " hello word "
text2 = text.partition('e')
print(text2)
22.2.rpartition() 从右侧分割出第一个子序列
text = " hello woerd "
text2 = text.rpartition('e')
print(text2)
22.3.split() 分割出全部子序列,可以设置分割的次数
22.4.rsplit() 从右侧分割出全部子序列,可以设置分割的次数
text = " hello woerd "
text2 = text.split('e',2)
print(text2)
22.5.splitlines() 分割换行,可以选择是否隐藏
text = " hello\nwoerd "
text2 = text.splitlines(True)
print(text2)
23.1.startswith() 判断一个字符串是否以子序列开头
text = " hello woerd "
text2 = text.startswith(' ')
print(text2)
24.swapcase() 大小写转换
text = " hello woerd "
text2 = text.swapcase()
print(text2)
python,字符串方法的更多相关文章
- python字符串方法的简单使用
学习python字符串方法的使用,对书中列举的每种方法都做一个试用,将结果记录,方便以后查询. (1) s.capitalize() ;功能:返回字符串的的副本,并将首字母大写.使用如下: >& ...
- Python 字符串方法详解
Python 字符串方法详解 本文最初发表于赖勇浩(恋花蝶)的博客(http://blog.csdn.net/lanphaday),如蒙转载,敬请保留全文完整,切勿去除本声明和作者信息. ...
- python 字符串方法整理
Python字符串方法 1.大小写转换 1.1 lower.upper lower():小写 upper():大写 1.2 title.capitalize S.title():字符串中所有单词首字母 ...
- python 字符串方法isdigit()
python isdigit() 方法检测字符串是否只有数字组成. 语法: isdigit()方法语法: str.isdigit() 参数:无 返回值: 如果字符串中只含有数字则返回True,否则返回 ...
- python字符串方法以及注释
转自fishC论坛:http://bbs.fishc.com/forum.php?mod=viewthread&tid=38992&extra=page%3D1%26filter%3D ...
- python字符串方法replace()简介
今天写replace方法的时候的代码如下: message = "I really like dogs" message.replace('dog','cat') print(me ...
- [python]字符串方法
字符串的方法及注释 字符串的方法及注释 capitalize() 把字符串的第一个字符改为大写 casefold() 把整个字符串的所有字符改为小写 cente ...
- Python字符串方法
capitalize() 把字符串的第一个字符改为大写 casefold() 把整个字符串的所有字符改为小写 center(width) 将字符串居中,并使用空格填充至长度 width 的新字符串 c ...
- Python字符串方法总结(一)
1.find 在一个较长的字符串中查找子串.它返回子串所在位置的最左端索引.如果没有找到则返回-1 2.split 将字符串用给定的分隔符分割成序列,当没有提供分隔符时,默认把所有空格作为分隔符 3. ...
- python 字符串方法及列表,元组,字典(一)
字符串 str 注: 若想要保持单引号和双引号为字符串的一部分 1)单双引号交替使用, 2)使用转义字符\ 3)成对三个引号被存在变量里 二.字符串详细用法 字符串的单个取值例 p_1=”hello” ...
随机推荐
- python库-Arrow处理时间
Arrow是一个处理时间的python库,能一键转换dates/times/timestamps等时间格式而不需要大量导致各种时间模块和格式转换函数,十分快捷方便 使用Arrow需要两步转换操作: 1 ...
- jQuery-4.动画篇---自定义动画
jQuery中动画animate(上) 有些复杂的动画通过之前学到的几个动画函数是不能够实现,这时候就需要强大的animate方法了 操作一个元素执行3秒的淡入动画,对比一下2组动画设置的区别 $(e ...
- AJ的笔记之上拉电阻的工作原理分析
第二章:聊一聊上拉电阻的工作原理 **********本文所采用的单片机是:STC89C52RC系******************** [重点提要]其实,理解上拉电阻的原理,关键是理解这两个词:锁 ...
- 最详细的 linux grep命令教程
简介 grep (global search regular expression(RE) and print out the line,全面搜索正则表达式并把行打印出来)是一种强大的文本搜索工具,它 ...
- 百战程序员——JSP
JSP全称是什么?它相比servlet有什么优势?有什么劣势? JSP全名为Java Server Pages,中文名叫java服务器页面,其根本是一个简化的Servlet设计. JSP技术使用Jav ...
- 更改手机系统的User-Agent & okhttp
okhttp 和 volley 1. 之前用的是volley,其中一部分功能,比如User-Agent,是系统去处理的,改成okhttp库后,这部分功能需要浏览器自己处理 2. 具体区别可以参考: h ...
- appium-doctor问题
在电脑上安装Appium,打开CDM运行appium-doctor,运行报错提示如下 检查运营Java.javac.java -version均有返回值,说明我的配置是成功,输入where Java, ...
- adb 安装安卓包
1.搭建安卓环境,或者下载安装ADB工具 2.adb version检查是否安装成功 3.用数据线连上手机,并在手机中打开USB调试模式,使用adb devices 查看链接的设备 这样表示成功连接上 ...
- vue H5页面在微信浏览器打开软键盘关闭导致页面空缺的问题。
methods:{ inputBlur () { // window.scroll(0, 0); setTimeout(() => { // alert(1); if (document.act ...
- PL/SQL连接远程服务器数据库,出现ORA-12154: TNS: 无法解析指定的连接标识符。
故障环境:上礼拜新装了一台服务器(win server2008r2),并在服务器上安装了ORACLE 11g database.且已经做好监听配置,开通了1521端口. 我又在局域网内另一台pc端装了 ...