python 基础之字符串方法
字符串
print('chenxi'*8)
测试
D:\python\python.exe D:/untitled/dir/for.py
chenxichenxichenxichenxichenxichenxichenxichenxi Process finished with exit code 0
字符串切片打印处理
print('chenxi'[2:])
测试
D:\python\python.exe D:/untitled/dir/for.py
enxi
判断字符串里有没有包含对应得字符
print('x'in 'chenxi')
print('f'in 'chenxi')
测试
True
False
字符串拼接,不建议使用这种方法
a='cx'
b='zrd'
c=a+b
print(c)
测试
D:\python\python.exe D:/untitled/dir/for.py
cxzrd Process finished with exit code 0
字符串拼接
a='cx'
b='zrd'
c=''.join([a,b])
print(c)
测试
D:\python\python.exe D:/untitled/dir/for.py
cxzrd Process finished with exit code 0
字符串拼接
a='cx'
b='zrd'
bb='haha'
c='-----'.join([a,b,bb])
print(c)
测试
D:\python\python.exe D:/untitled/dir/for.py
cx-----zrd-----haha
字符串之统计关键字个数
dis = 'hebei tianjing guanzhou'
print(dis.count('i'))
测试
D:\python\python.exe D:/untitled/dir/for.py
3
字符串之修改首字母为大写
dis = 'hebei tianjing guanzhou'
print(dis.capitalize())
测试
D:\python\python.exe D:/untitled/dir/for.py
Hebei tianjing guanzhou
一共打印50字符,不够用指定字符去补,原先字符串内容居中
dis = 'hebei tianjing guanzhou'
print(dis.center(50,'#'))
测试
D:\python\python.exe D:/untitled/dir/for.py
#############hebei tianjing guanzhou############## Process finished with exit code 0
判断字符串是不是以什么结尾的
dis = 'hebei tianjing guanzhou'
print(dis.endswith('u'))
print(dis.endswith('i'))
测试
D:\python\python.exe D:/untitled/dir/for.py
True
False Process finished with exit code 0
判断字符串是不是以什么开头的
dis = 'hebei tianjing guanzhou'
print(dis.startswith('he'))
测试
D:\python\python.exe D:/untitled/dir/for.py
True Process finished with exit code 0
修改字符串里tab的默认空格数量\t 表示tab键
dis = 'he\tbei tianjing guanzhou'
print(dis.expandtabs(tabsize=10))
测试
D:\python\python.exe D:/untitled/dir/for.py
he bei tianjing guanzhou Process finished with exit code 0
找到字符串里第一个元素定返回索引值
dis = 'hebei tianjing guanzhou'
print(dis.find('a'))
测试
D:\python\python.exe D:/untitled/dir/for.py
8
将字符串变量赋值打印
dis = 'hebei tianjing guanzhou {name}'
print(dis.format(name='zrd'))
测试
D:\python\python.exe D:/untitled/dir/for.py
hebei tianjing guanzhou zrd Process finished with exit code 0
以字典方式批量给字符串赋值
dis = 'hebei tianjing guanzhou {name} ll {age}'
print(dis.format_map({'name':'zrd','age':22}))
测试
D:\python\python.exe D:/untitled/dir/for.py
hebei tianjing guanzhou zrd ll 22 Process finished with exit code 0
查字符串里关键字并返回索引值,字符串里没有关键字报错
dis = 'hebei tianjing guanzhou {name} ll {age}'
print(dis.index('i'))
print(dis.index('d'))
测试
D:\python\python.exe D:/untitled/dir/for.py
Traceback (most recent call last):
File "D:/untitled/dir/for.py", line 170, in <module>
print(dis.index('d'))
ValueError: substring not found
4
判断字符串是否包含特殊字符
print('test564'.isalnum() )
print('tygc*'.isalnum())
print('reswd'.isalnum())
print('7890'.isalnum())
print('宋氏家族'.isalnum())
测试
D:\python\python.exe D:/untitled/dir/for.py
True
False
True
True
True
判断字符串像不像十进制的数字
print("3455".isdecimal())
print("程序".isdecimal())
print("AF09".isdecimal())
print("hevb".isdecimal())
测试
D:\python\python.exe D:/untitled/dir/for.py
True
False
False
False
判断字符串是否包含一个非法字符
print("dtfghvh".isidentifier())
print("1233tyghgvh".isidentifier()) #非法字符
测试
D:\python\python.exe D:/untitled/dir/for.py
True
False
判断字符是不是空格
print(' '.isspace())
测试
D:\python\python.exe D:/untitled/dir/for.py
True Process finished with exit code 0
判断字符串是不是标题格式
print('My Ch'.istitle())
print('My ch'.istitle())
测试
True
False
字符串里所有大写改成小写
print('My Ch'.lower())
测试
D:\python\python.exe D:/untitled/dir/for.py
my ch Process finished with exit code 0
字符串所有小写该大写
print('My Ch'.upper())
测试
D:\python\python.exe D:/untitled/dir/for.py
MY CH Process finished with exit code 0
字符串中大小写翻转
print('My Ch'.swapcase())
测试
D:\python\python.exe D:/untitled/dir/for.py
mY cH Process finished with exit code 0
在字符串后面以特定字符补够特定数量
print('My Ch'.ljust(50,'*'))
测试
D:\python\python.exe D:/untitled/dir/for.py
My Ch********************************************* Process finished with exit code 0
在字符串前面以特定字符补够特定数量
print('My Ch'.rjust(50,'*'))
测试
D:\python\python.exe D:/untitled/dir/for.py
*********************************************My Ch Process finished with exit code 0
将字符串前后空格去掉
print(' My Ch'.strip())
测试
D:\python\python.exe D:/untitled/dir/for.py
My Ch Process finished with exit code 0
字符串内容替换
print('chenxi ffff'.replace('ffff','zrd'))
测试
D:\python\python.exe D:/untitled/dir/for.py
chenxi zrd Process finished with exit code 0
字符串内容替换的次数控制
print('chenxi ffff'.replace('ffff','zrd'))
print('chenxi ffff tygdf'.replace('ff','zrd'))
print('chenxi ffff tygdf'.replace('ffff','zrd',1))
测试
D:\python\python.exe D:/untitled/dir/for.py
chenxi zrd
chenxi zrdzrd tygdf
chenxi zrd tygdf Process finished with exit code 0
查字符串最后一个关键字在第几个索引
print('chenxi cx xlc'.rfind('x'))
测试
D:\python\python.exe D:/untitled/dir/for.py
10 Process finished with exit code 0
将字符串以空格为分隔符,分成列表
print('chenxi cx xlc'.split(' '))
测试
D:\python\python.exe D:/untitled/dir/for.py
['chenxi', 'cx', 'xlc'] Process finished with exit code 0
python 基础之字符串方法的更多相关文章
- 【python基础】字符串方法汇总
一.声明 0-多个字符组成的有序序列; 二.特点 1. 字符串是一个不可变的数据类型 2.字符串是有序的 三.索引 下标:'abcde' 1.从左到右, 0, 1,2, ... 2.从右到左, 索引值 ...
- python基础 while 字符串方法 运算符
一.while 1.while 死循环 f=True while f: print(1) print(2) 2.while 活循环 ①.正序 count = 1 while count <= 5 ...
- Python基础数据类型-字符串(string)
Python基础数据类型-字符串(string) 作者:尹正杰 版权声明:原创作品,谢绝转载!否则将追究法律责任. 本篇博客使用的是Python3.6版本,以及以后分享的每一篇都是Python3.x版 ...
- Python中的字符串方法
Python中的字符串方法 字符串类即str提供了许多有用的方法来操纵字符串.具体来说,我们将讨论如下的方法. 搜索字符串内的子字符串. 测试字符串. 格式字符串. 转换字符串. 回顾前面的章节,方法 ...
- Python基础(二) —— 字符串、列表、字典等常用操作
一.作用域 对于变量的作用域,执行声明并在内存中存在,该变量就可以在下面的代码中使用. 二.三元运算 result = 值1 if 条件 else 值2 如果条件为真:result = 值1如果条件为 ...
- python基础知识——字符串详解
大多数人学习的第一门编程语言是C/C++,个人觉得C/C++也许是小白入门的最合适的语言,但是必须承认C/C++确实有的地方难以理解,初学者如果没有正确理解,就可能会在使用指针等变量时候变得越来越困惑 ...
- Python 入门之Python基础数据类型及其方法
Python 入门之Python基础数据类型 1. 整型:int 用于计算,用于比较 (在赋值的时候先执行等号右边的内容) 1.1 整数的加 a = 10 b = 20 print(a + b) 结果 ...
- Python基础__字符串拼接、格式化输出与复制
上一节介绍了序列的一些基本操作类型,这一节针对字符串的拼接.格式化输出以及复制的等做做详细介绍.一. 字符串的拼接 a = 'I', b = 'love', c = 'Python'. 我们的目的是: ...
- python基础、字符串和if条件语句,while循环,跳出循环、结束循环
一:Python基础 1.文件后缀名: .py 2.Python2中读中文要在文件头写: -*-coding:utf8-*- 3.input用法 n为变量,代指某一变化的值 n = inpu ...
随机推荐
- C语言实例-大小写字母间的转换
初学C语言都会遇到要求写大小写转换的题目 这类题目主要通过ASCII(美国信息交换标准代码)码差值实现,A对应ASCII码十进制数字是65,a对应ASCII码十进制数字是97,即大小写字母之间ASCI ...
- C语言特点有哪些?
C语言的特点 : 1.简洁紧凑.灵活方便 C语言一共只有32个关键字,9种控制语句,程序书写自由,主要用小写字母表示.它把高级语言的基本结构和语句与低级语言的实用性结合起来. C 语言可以象汇编语言一 ...
- 读写json文件
def read_json(path): """return dict""" with open(path,'r+')as f: retur ...
- Hadoop3.1.1源码Client详解 : Packet入队后消息系统运作之DataStreamer(Packet发送) : 主干
该系列总览: Hadoop3.1.1架构体系——设计原理阐述与Client源码图文详解 : 总览 在上一章(Hadoop3.1.1源码Client详解 : 写入准备-RPC调用与流的建立) 我们提到, ...
- 了解Maven的基本知识
我的博客地址:https://www.cnblogs.com/themysteryofhackers/p/11934540.html 更新时间:2019-11-26 一.Maven的基本概念 Mave ...
- openstack自动化搭建脚本
Openstack平台部署+节点扩容 1)搭建脚本 #!/bin/bash #openstack私有云平台部署 #脚本使用前提:三台虚拟机openstack(ip地址:.11至少4G内存,100G硬盘 ...
- 一年读100本书---HHR,NZJ---19年最后4个月
那些自律到极致的人,都拥有了开挂的人生.生物钟,绝对一致之后,一切都会很高效. 19年最后一个季度的HHR计划:还剩下3个月的时间,主要搞定几件事情:创业(以太一堂,混沌大学),工作能力(推荐算法工程 ...
- 树莓派3B 安装gcc和g++
转:https://blog.csdn.net/zhuming3834/article/details/81946707 安装 如果不是root 用户,请自行加上sudo apt-get instal ...
- C语言:根据形参c中指定的英文字母,按顺序打印出若干后继相邻字母,-主函数中放入一个带头节点的链表结构中,h指向链表的头节点。fun函数找出学生的最高分-使用插入排序法对字符串中的字符进行升序排序。-从文件中找到指定学号的学生数据,读入次学生数据,
//根据形参c中指定的英文字母,按顺序打印出若干后继相邻字母,输出字母的大小与形参c一致,数量由形参d指定.例如:输入c为Y,d为4,则输出ZABC. #include <stdio.h> ...
- sqlite3 install 和使用
windows: 在 Windows 上安装 SQLite 请访问 http://www.sqlite.org/download.html,从 Windows 区下载预编译的二进制文件. 您需要下载 ...