python中str用法_python数据类型之str用法

1、首字母大写

语法:S.capitalize() ->str

title= "today is a good day"title_ca=title.capitalize()

print(title_ca)

结果:today is a good day

2、大写转小写

1 语法:S.casefold() ->str2

3 title = "TODAY is a GOOD day"

4 title_ca =title.casefold()5 print(title_ca)

结果:Today is a good day

3、字符串居中

c = 'kong'ret= c.center(10,'*')

print(ret)

结果:***kong***

4、字符串子串数量统计

S.count(sub[, start[, end]]) -> inttitle= "today is a good day"title_ca= title.count('y',1,5)

print(title_ca)

结果:1

5、中文转UTF-8

S.encode(encoding='utf-8', errors='strict') ->bytes

zw= '孔扎根'ut=zw.encode()

print(ut)

结果:b'\xe7\xa9\xba\xe6\x89\x8e\xe6\xa0\xb9'

6、字符串结束判断

S.endswith(suffix[, start[, end]]) -> booltitle= "TODAY is a GOOD day"title_ca= title.endswith('day')

print(title_ca)

结果:True

7、TAB转空格

S.expandtabs(tabsize=8) ->str

#默认是一个TAB转8个空格

title= "TODAY\tis\ta\tGOOD\tday"title_ca=title.expandtabs()

print(title_ca)

结果:TODAYis a GOOD day

8、查找字符串的位置

S.find(sub[, start[, end]]) -> inttitle= "TODAY\tis\ta\tGOOD\tday"title_ca= title.find('s')

print(title_ca)

结果:7

9、字符串格式化

S.format(*args, **kwargs) ->str

#可传入元组或字典

title= "{}\tis\ta\t{day_type}\tday"title_ca= title.format('TODAY',day_type='GOOD')

print(title_ca)

结果:TODAYis a GOOD day

10、字符串格式化,从字典输入(format_map)

S.format_map(mapping) ->str

#输入参数为字典,循环读字典中的列表

maping_name={'name':['alex','join'],'age':[18,19]

}for x in range(2):

print('my name is {},and i is {} old'.format(maping_name['name'][x],maping_name['age'][x]))

结果:

my nameis alex,and i is 18old

my nameis join,and i is 19 old

11、字符串的索引位置

S.index(sub[, start[, end]]) -> int#查找Y的索引位置,从0开始数

title= "TODAY\tis\ta\tGOOD\tday"title_ca= title.index('Y')

print(title_ca)

结果:4

12、字符串中至少有一个数字

S.isalnum() -> bool#字符串不能有空格,否则失败

title= "22TODAY"title_ca=title.isalnum()

print(title_ca)

结果:True

13、字符串中至少有一个字母

S.isalpha() -> bool#字符串不能有空格或TAB键

title= "22TODAY"title_ca=title.isalnum()

print(title_ca)

结果:True

14、字符串是否为数值

num = "1"#unioncode

print(num.isdigit())

print(num.isdecimal())

print(num.isnumeric())

结果:

True

True

True

num= "1"#全角

print(num.isdigit())

print(num.isdecimal())

print(num.isnumeric())

结果:

True

True

True

num= b"1"#byteprint(num.isdigit())

print(num.isdecimal())

print(num.isnumeric())

结果:

True

AttributeError:'bytes' object has no attribute 'isdecimal'AttributeError:'bytes' object has no attribute 'isnumeric'num= "IV"#罗马字符

print(num.isdigit())

print(num.isdecimal())

print(num.isnumeric())

结果:

False

False

False

num= "四"#汉字

print(num.isdigit())

print(num.isdecimal())

print(num.isnumeric())

结果:

False

False

True

支持的字符:

isdigit:支持 unioncode,全角,byte,汉字

isdecimal:支持 unioncode,全角,

isnumeric:支持 unioncode,全角,汉字

报错:

isdigit不会报错,后两种在byte判断时会报错

15、判断字符串是否为有效标识符(可做为函数名称)

#S.isidentifier() -> boolt_code= 'test'print(t_code.isidentifier())

结果:返回True

t_code= '23test'print(t_code.isidentifier())

结果:返回False

16、判断字符串是否全小写

#S.islower() -> boolt_code= 'kongzhagen'print(t_code.islower())

结果:返回True

t_code= 'kongzHagen'print(t_code.islower())

结果:返回False

17、判断字符串是否全整型数字

#S.isnumeric() -> boolt_code= '123'print(t_code.isnumeric())

结果:返回True

t_code= '123d'print(t_code.isnumeric())

结果:返回False

t_code= '123.123'print(t_code.isnumeric())

结果:返回False

18、判断所有字符是否可打印

#S.isprintable() -> boolt_code= '123KKK'print(t_code.isprintable())

返回:True

t_code= ''print(t_code.isprintable())

返回:True

t_code= 'KKK\n\t'print(t_code.isprintable())

返回:False

19、判断字符中是否全为空格

#S.isspace() -> boolt_code= ' 'print(t_code.isspace())

结果:返回True

t_code= '123 KKK'print(t_code.isspace())

结果:返回False

20、判断字符串是否为标题格式(首字母大写)

#S.istitle() -> bool

t_code = 'Today Is A Good Day'

print(t_code.istitle())

结果:True

t_code = 'Today Is A Good day'

print(t_code.istitle())

结果:False

t_code = 'TODAY IS'

print(t_code.istitle())

结果:False

21、判断字符串是否全大写

#S.isupper() -> boolt_code= 'Today Is A Good day'print(t_code.isupper())

结果:False

t_code= 'TODAY IS'print(t_code.isupper())

结果:True

22、字符串连接

#S.join(iterable) ->str

t_code= 'Today Is A Good Day't1_code= '.'.join(t_code)

print(t1_code)

结果:T.o.d.a.y. .I.s. .A. .G.o.o.d. .D.a.y

23、左对齐,达不到指定长度,右则填充

#S.ljust(width[, fillchar]) ->str

t_code= 'Today Is A Good Day'print(t_code.ljust(22,'*'))

结果:Today Is A Good Day***

24、转小写

#S.lower() ->str

t_code= 'Today Is A Good Day'print(t_code.lower())

结果:todayis a good day

25、左边去除指定字符,默认为空格

# S.lstrip([chars]) ->str

t_code= 'Today Is A Good Day'print(t_code.lstrip('T'))

结果:oday Is A Good Day

t_code= 'Today Is A Good Day'print(t_code.lstrip())

结果:Today Is A Good Day

26、

maketrans

27、partition

按指定的字符拆分字符串,分头、分隔串、尾,未找到指定的分隔符,头返回自己,后面两个返回空

#S.partition(sep) ->(head, sep, tail)

t_code= 'TodayIs A Good Day'print(t_code.partition('a'))

结果:('Tod', 'a', 'yIs A Good Day')

print(t_code.partition('P'))

结果:('TodayIs A Good Day', '', '')

28、replace:字符串替换

将老字符串替换为新字符串,可指定替换次数

#S.replace(old, new[, count]) ->str

t_code= 'TodayIs A Good Day,To today'print(t_code.replace('T','M',2))

结果:ModayIs A Good Day,Mo today

29、rfind:返回查询到的字符串的最大索引

#S.rfind(sub[, start[, end]]) -> int

t_code = 'TodayIs A Good Day,To today'print(t_code.rfind('d'))

结果:24

30、rindex:类似rfind,但如果没找到会报错

#S.rindex(sub[, start[, end]]) -> int

t_code = 'TodayIs A Good Day,To today'

print(t_code.rindex('p'))

结果:

Traceback (most recent call last):

File "C:/51py/day1/study.py", line 90, in

print(t_code.rindex('p'))

ValueError: substring not found

31、rjust:右对齐,左侧填充字符

#S.rjust(width[, fillchar]) -> str

t_code = 'Today'print(t_code.rjust(10,'*'))

结果:*****Today

32、rpartition:类似partition,如果未找到字符串,则空值在左边

#S.rpartition(sep) ->(head, sep, tail)

t_code= 'Today is a good day'print(t_code.rpartition('isa'))

结果:('', '', 'Today is a good day')

33、rsplit:分割字符串,从右边开始

#S.rsplit(sep=None, maxsplit=-1) ->list of strings

t_code= 'Today is a good day'print(t_code.rsplit('o',1))

结果:['Today is a go', 'd day']

34、rstrip:右边去空格

#S.rstrip([chars]) ->str

t_code= 'Today is a good day'print(t_code.rstrip())

结果: Todayis a good day

35、splitlines:方法返回一个字符串的所有行列表,可选包括换行符的列表(如果num提供,则为true)

#S.splitlines([keepends]) ->list of strings

t_code= 'Today\n is\n a\n good\n day'print(t_code.splitlines())

print(t_code.splitlines(0))

print(t_code.splitlines(1))

结果:

['Today', 'is', 'a', 'good', 'day']

['Today', 'is', 'a', 'good', 'day']

['Today\n', 'is\n', 'a\n', 'good\n', 'day']

36、startswith:如果字符串以指定的字符为前缀,则返回true,否则返回false

#S.startswith(prefix[, start[, end]]) -> boolt_code= 'Today\n is\n a\n good\n day'print(t_code.startswith('Today'))

结果:True

37、strip:去除字符串前后的空格

#S.strip([chars]) ->str

t_code= 'Today\n is\n a\n good\n day'print(t_code.strip())

结果:

Todayisa

good

day

38、swapcase:大小写互转

#S.swapcase() -> str

t_code = ' Today Is a Good Day '

print(t_code.swapcase())

结果: tODAY iS A gOOD dAY

39、title:返回的字符串为title格式,首字母大写

#S.title() ->str

t_code= 'today is a Good Day'print(t_code.title())

结果:Today Is A Good Day

40、maketrans:用于创建字符映射的转换表,两个参数为长度相等的字符串

#B.maketrans(frm, to) ->translation table

intab= "aeiou"outab= "1234k"trantab=t_code.maketrans(intab,outab)

print(trantab)

结果:{97: 49, 111: 52, 117: 107, 101: 50, 105: 51}

41、translate:根据参数table给出的表转换字符中的字符

# S.translate(table) ->str

t_code= 'today is a Good Day'trantab= {97:49}

print(t_code.translate(trantab))

结果: tod1yis 1 Good D1y

42、ord与chr是配对函数

>>> chr(65)'A'

>>> ord('A')65

43、upper:将字符串转为大写

#S.upper() ->str

t_code= 'today is a Good Day'print(t_code.upper())

结果:TODAY IS A GOOD DAY

44、zfill:数字填零

#S.zfill(width) ->str

t_code= '123'print(t_code.zfill(5))

结果:00123

45、汇总

str = 'https://www.baidu. com234'# print(str.capitalize()) # 第一个字母大写

# print(str.count('w')) # 字符在字符串中出现的次数

# print(str.endswith('com')) # 字符串是否以com结尾

# print(str.expandtabs(tabsize=2)) # 字符串中的tab转为两个空格

# print(str.find('bai')) # 返回字符串中bai的索引

# print(str.rfind('bai')) # 返回字符串中bai的索引,从右边找

# print(str.index('bai')) # 返回字符串中bai的索引,未找到会报错

# print(str.rindex()) # 返回字符串中bai的索引,未找到会报错(从右边找)

# print(str.isalnum()) # 如果所有字符都是数字或字母,则返回True

# print(str.isalpha()) # 如果所有字符都是字母,则返回True

# print(str.isnumeric()) # 如果所有字符都是数字,则返回T

# print(str.isdecimal()) # 可解释为十进制数,则返回True

# print(str.isdigit()) # 可解释为数字,则返回True

# print(str.islower()) # 字符串中的字母都小写,则返回True(可以有其它字符)

# print(str.isupper()) # 字符串中的字母都大写,则返回True(可以有其它字符)

# print(str.isspace()) # 字符串中全是空格,则返回True

# print(str.istitle()) # 如果字符串是标题化的,则返回True(每个单词首字母大写,其它小写)

# print(str.ljust(100)) # 字符串左对齐,长度100

# print(str.rjust(100)) # 字符串右对齐,长度100

# print(str.lower()) # 所有字符转小写

# print(str.lstrip()) # 去掉字符串左边的空格

print str.replace('t','2',2) # 将p 替换为2,替换2次

print str.rfind('o') # 从右边查找第一个o所在的位置

print str.rindex('o') # 从右边查找第一个o所在的位置的索引

print str.partition('du') # 从左边找到第一个du,并以之分隔字符串,返回列表

print str.rstrip() # 去掉右边的空格

print str.split('w',2) # 以w为分隔符,切分字符串

print str.splitlines() # 以行做为分隔符

print str.startswith('http') # 是否以http开头

print str.swapcase() # 翻转大小写

print str.title() # 将string标题化,所有单词首字母大写,其它小写

print str.upper() # 所有字母大写

print str.zfill(150) # 返回150个字符,原字符串右对齐,前面填充0

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/260780.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

WPF 窗体设置

WPF 当窗体最大化时控件位置的大小调整&#xff1a; View Code 1 <Window x:Class"WpfApplication1.MainWindow"2 xmlns"http://schemas.microsoft.com/winfx/2006/xaml/presentation"3 xmlns:x"http://schemas.microsoft.com/wi…

Git实践

Git是什么自不必说。Git和gitlab安装和实践在后边的俩篇中会写。本篇仅重点写Git自动部署。Git同样有Hooks,可以用于各种需求。可以控制提交commit名称&#xff0c;可以控制代码规范&#xff0c;也当然包含以下要介绍的自动部署&#xff0c;也不仅包含这些。Git自动部署简单的思…

第3章 Python 数字图像处理(DIP) - 灰度变换与空间滤波14 - 平滑低通滤波器 -高斯滤波器核的生成方法

目录平滑&#xff08;低通&#xff09;空间滤波器低通高斯滤波器核统计排序&#xff08;非线性&#xff09;滤波器平滑&#xff08;低通&#xff09;空间滤波器 平滑&#xff08;也称平均&#xff09;空间滤波器用于降低灰度的急剧过渡 在图像重取样之前平滑图像以减少混淆用…

易经0

--- 阳爻 - - 阴爻 从下往上 画爻 (yao) 三画卦 --> 2^38 (八卦) 那天有空用程序 解析一下 六画卦 --> 2^664(卦) 卦形记忆歌&#xff1a;宋代朱熹的《周易本义》写了《八卦取象歌》帮人记卦形&#xff1a; 乾三连&#xff0c;坤六断&#xff1b;震仰盂&#xff0c;艮覆碗…

python3.7怎么安装turtle_python怎么安装turtle

turtle库是Python语言中一个很流行的绘制图像的函数库&#xff0c;想象一个小乌龟&#xff0c;在一个横轴为x、纵轴为y的坐标系原点&#xff0c;(0,0)位置开始&#xff0c;它根据一组函数指令的控制&#xff0c;在这个平面坐标系中移动&#xff0c;从而在它爬行的路径上绘制了图…

强制html元素不随窗口缩小而换行

<style> div{ white-space:nowrap; } </style> 强制div内的元素不随窗口缩小而换行 本文出自 “点滴积累” 博客&#xff0c;请务必保留此出处http://tianxingzhe.blog.51cto.com/3390077/1679366

静态变量、方法

static 变量---所有对象共享一个变量&#xff08;全局变量区&#xff09;&#xff0c;无需构造---概念上和.net相同所有对象共享一个变量的实质&#xff1a;声明时&#xff1a;堆区存放一个地址&#xff0c;地址指向全局变量区。然后当类对象声明时&#xff0c;只是在堆区中为自…

python语言是机器语言_Python解释器:源代码--字节码--机器语言

"一个用编译性语言比如C或C写的程序可以从源文件&#xff08;即C或C语言&#xff09;转换到一个你的计算机使用的语言&#xff08;二进制代码&#xff0c;即0和1&#xff09;。这个过程通过编译器和不同的标记、选项完成。当你运行你的程序的时候&#xff0c;连接/转载器软…

第3章 Python 数字图像处理(DIP) - 灰度变换与空间滤波15 - 锐化高通滤波器 -拉普拉斯核(二阶导数)

目录锐化&#xff08;高通&#xff09;空间滤波器基础 - 一阶导数和二阶导数的锐化滤波器二阶导数锐化图像--拉普拉斯锐化&#xff08;高通&#xff09;空间滤波器 平滑通过称为低通滤波类似于积分运算锐化通常称为高通滤波微分运算高过&#xff08;负责细节的&#xff09;高频…

Debian on VirtualBox下共享win7文件夹设置

借用&#xff1a;http://www.dbasoul.com/2010/695.html 1. 安装增强功能包(Guest Additions) 参考文档&#xff1a;Debian下安装VirtualBox增强功能2. 设置共享文件夹 重启完成后点击”设备(Devices)” -> 共享文件夹(Shared Folders)菜单&#xff0c;添加一个共享文件夹&a…

第四周作业

1、复制/etc/skel目录为/home/tuser1&#xff0c;要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。cp -r /etc/skel/ /home/tuser1/chmod -R go--- /home/tuser1/2、编辑/etc/group文件&#xff0c;添加组hadoop。vim /etc/group G, o, hadoop:x:501, esc, …

C# 导出 Excel 数字列出现‘0’的解决办法

在DataGird的中某一列全是数字并且长度大于15的字符&#xff0c;在导出excel时数字列第15-18位全部为0。解决办法&#xff1a;在需导出数字列前加入英文字符状态的单引号&#xff08;‘ &#xff09;&#xff0c;如&#xff1a;<asp:TemplateField HeaderText"身份证号…

在python是什么意思_python 的 表示什么

python代码里经常会需要用到各种各样的运算符&#xff0c;这里我将要和大家介绍的是Python中的&&#xff0c;想知道他是什么意思吗&#xff1f;那就和小编一起来了解一下吧。&是位运算符-与&#xff0c;类似的还有|&#xff08;或&#xff09;&#xff0c;!(非)。 整数…

Ubuntu 更改ROOT密码的方法

真蛋疼啊&#xff0c;刚安装了Ubuntu 需要安装程序&#xff0c;提示输入root密码&#xff0c;我才想起来Ubuntu的root密码是什么&#xff0c;我貌似没设置啊。 上网搜索了下相关信息&#xff0c;才知道原来root默认是没有密码的。 需要使用以下命令 sudo passwd root 然后会要求…

DevExpress控件GridControl中的布局详解 【转】

DevExpress控件GridControl中的布局详解 【转】 2012-10-24 13:27:28| 分类&#xff1a; devexpress | 标签&#xff1a;devexpress |举报|字号 订阅 http://www.cnblogs.com/martintuan/archive/2011/03/05/1971472.html 进行DevExpress控件GridControl的使用时&#xff…

第3章 Python 数字图像处理(DIP) - 灰度变换与空间滤波16 - 锐化高通滤波器 - 钝化掩蔽和高提升滤波

目录锐化&#xff08;高通&#xff09;空间滤波器钝化掩蔽和高提升滤波锐化&#xff08;高通&#xff09;空间滤波器 平滑通过称为低通滤波类似于积分运算锐化通常称为高通滤波微分运算高过&#xff08;负责细节的&#xff09;高频&#xff0c;衰减或抑制低频 钝化掩蔽和高提…

python画圆并填充图形颜色_如何使用python设计语言graphics绘制圆形图形

在python设计语言中&#xff0c;可以利用第三方包graphics绘制不同的图形&#xff0c;有圆形、直线、矩形等。如果想要绘制一个圆形&#xff0c;可以设置圆形的半径和坐标位置。下面利用一个实例说明绘制圆形&#xff0c;操作如下&#xff1a;工具/原料 python 截图工具 方法/步…

设计模式学习-工厂方法模式

在上文(设计模式学习-简单工厂模式)的模拟场景中&#xff0c;我们用简单工厂模式实现了VISA和MASTERARD卡的刷卡处理&#xff0c;系统成功上线并运行良好&#xff0c;突然有一天老大跑来说&#xff0c;我们的系统需要升级&#xff0c;提供对一般银联卡的支持。怎么办&#xff1…

3ds Max Shortcuts 快捷键大全

主界面 【Q】选择循环改变方式 【W】移动 【E】旋转 【R】缩放循环改变方式 【7】物体面数 【8】Environment 【9】Advanced lighting 【0】Render to Textures 【1】【2】【3】【4】【5】分别对应5个次物体级别&#xff0c;例如Edit Mesh中的点、线、面、多边形、 【F2】切换在…