python基础语法之字符串
1 字符串中*的使用
*可以使字符串重复n次
print('hello world ' * 2) # hello world hello world
2 索引获取字符串的字符元素
print('hello world'[2:]) # llo world
3 in成员符
print('el' in 'hello') # True
4 字符串格式化
name = 'Bob'
msg = 'my name is %s' % name
print(msg) # my name is Bob
5 字符串拼接
采用+(建议尽量不要采用此方法,效率低,时间复杂度为平方级)
name = 'Bob'
age = ''
msg = name + ' is ' + age + ' years old!'
print(msg) # Bob is 20 years old!
采用join方法
字符串是join前面的那一字符串为拼接间隔
name = 'Bob'
age = ''
msg = name + ' is ' + age + ' years old!'
print(msg) # Bob is 20 years old!
msg_join = ' '.join([name, 'is', age, 'years old!'])
print(msg_join) # Bob is 20 years old!
6 字符串常用的内置方法
6.1 count() 可以计算参数中的字符串在原字符串中出现的数量
string = 'hello kitty'
count = string.count('l')
print(count) #
6.2 center()
string = 'title'
msg = string.center(50, '-')
print(msg) # ----------------------title-----------------------
6.3 startswith()
可以判断待处理的字符串是不是自己想要的字符串
string = 'title'
print(string.startswith('t')) # True
6.4 find()
查找参数中的字符串并返回索引,若找不到就返回-1
st = 'hello world'
index = st.find('w')
print(index) #
print(st.find('a')) # -1
6.5 index()
和find()差不多,只是在找不到的时候报错
st = 'hello world'
index = st.index('w')
print(index) #
print(st.index('a')) # ValueError: substring not found
6.6 lower()
将字符串中的大写字母变成小写字母
st = 'Hello World'
st_lower = st.lower()
print(st_lower) # hello world
6.7 upper()
将字符串中的小写字母变成大写字母
st = 'Hello World'
st_upper = st.upper()
print(st_upper) # HELLO WORLD
6.8 strip()
将待处理的字符串的空格,换行,制表符去掉
st = ' hello world\n'
st_strip = st.strip()
print(st_strip) # helloworld
print(len(st_strip)) #
6.9 replace()
st = 'hello world'
st_replace = st.replace('world', 'Bob')
print(st_replace) # hello Bob
6.10 split()
将字符串按照某字符进行分割,返回一个字符串元组
st = 'my old boy'
st_split = st.split(' ')
print(st_split) # ['my', 'old', 'boy']
python基础语法之字符串的更多相关文章
- 【python基础语法】字符串常用方法 、列表(第3天课堂笔记)
""" 字符串的方法 join 字符串拼接,将列表转换为字符串 find 查找元素位置 count 查找元素个数 replace 替换字符 split 字符串分割,将字符 ...
- Python基础语法day_02——字符串规则
day_02 使用方法修改字符串的大小写 将字符串首字母变成大写 >>> name = "ada lovelace" >>> print(nam ...
- python基础语法_字符串编码
Python常用字符编码 http://www.cnblogs.com/schut/p/8406897.html Python常见字符编码间的转换 在字符串写入文件时,有时会因编码问题导致无法 ...
- python之最强王者(2)——python基础语法
背景介绍:由于本人一直做java开发,也是从txt开始写hello,world,使用javac命令编译,一直到使用myeclipse,其中的道理和辛酸都懂(请容许我擦干眼角的泪水),所以对于pytho ...
- Python 基础语法(四)
Python 基础语法(四) --------------------------------------------接 Python 基础语法(三)------------------------- ...
- Python 基础语法(二)
Python 基础语法(二) --------------------------------------------接 Python 基础语法(一) ------------------------ ...
- Python 基础语法
Python 基础语法 Python语言与Perl,C和Java等语言有许多相似之处.但是,也存在一些差异. 第一个Python程序 E:\Python>python Python 3.3.5 ...
- 吾八哥学Python(四):了解Python基础语法(下)
咱们接着上篇的语法学习,继续了解学习Python基础语法. 数据类型大体上把Python中的数据类型分为如下几类:Number(数字),String(字符串).List(列表).Dictionary( ...
- python学习第四讲,python基础语法之判断语句,循环语句
目录 python学习第四讲,python基础语法之判断语句,选择语句,循环语句 一丶判断语句 if 1.if 语法 2. if else 语法 3. if 进阶 if elif else 二丶运算符 ...
随机推荐
- jquery 自定义右键菜单
如果要自定义右键菜单,那么就需要禁止原本的右键菜单,代码如下 document.oncontextmenu = new Function("return false;");//禁止 ...
- 【转】深入理解Java多态性
http://developer.51cto.com/art/200906/130414.htm http://blog.csdn.net/cyzero/article/details/7266831 ...
- vuex中mapState、mapMutations、mapAction的理解
当一个组件需要获取多个状态时候,将这些状态都声明为计算属性会有些重复和冗余.为了解决这个问题,我们可以使用 mapState 辅助函数帮助我们生成计算属性. // 在单独构建的版本中辅助函数为 Vue ...
- 基于Python原生asyncio模块对DNS正向和反向的解析
一.正向解析:域名解析IP地址 import asyncio import socket domains = [ ('www.baidu.com', 'https'), ('cn.bing.com', ...
- [人物存档]【AI少女】【捏脸数据】少(烧)女前(钱)线
点击下载(城通网盘):9.zip 点击下载(城通网盘):AISChaF_20191112224605286.png
- [深度学习] pytorch学习笔记(4)(Module类、实现Flatten类、Module类作用、数据增强)
一.继承nn.Module类并自定义层 我们要利用pytorch提供的很多便利的方法,则需要将很多自定义操作封装成nn.Module类. 首先,简单实现一个Mylinear类: from torch ...
- asp.net 怎么上传文件夹啊,不传压缩包!
ASP.NET上传文件用FileUpLoad就可以,但是对文件夹的操作却不能用FileUpLoad来实现. 下面这个示例便是使用ASP.NET来实现上传文件夹并对文件夹进行压缩以及解压. ASP.NE ...
- BZOJ 2905: 背单词 AC自动机+fail树+dfs序+线段树
Description 给定一张包含N个单词的表,每个单词有个价值W.要求从中选出一个子序列使得其中的每个单词是后一个单词的子串,最大化子序列中W的和. Input 第一行一个整数TEST,表示数据组 ...
- Angular 文档中链接的修改路径
在 Angular 文档程序中的左侧链接的修改路径在哪里? 如下图所示的修改路径. 左侧链接的修改路径在 angular-cn\aio\content\navigation.json 这个文件中. 你 ...
- BZOJ 3456 城市规划 (组合计数、DP、FFT)
题目链接: https://www.lydsy.com/JudgeOnline/problem.php?id=3456 著名的多项式练习题,做法也很多,终于切掉了纪念 首先求一波递推式: 令\(F(n ...