python学习笔记3(字符串)
Python字符串:
在Python中的字符串被确定为一组连续的字符在引号之间, Python允许在任何对单引号或双引号。
串的子集,可以使用切片操作符可采用([]和[:]),索引从0开始的字符串的开始和结束(-1)。
加号(+)符号的字符串连接操作符,而星号(*)表示重复操作。
str = 'Hello,world!' print str
print str[0]
print str[2:5]
print str[2:]
print str * 2
print str + 'Ethon'
产生以下结果:
1、拼接字符串
>>> 'Hello, '+'world!'
'Hello, world!'
>>> x = 'Hello, '
>>> y = 'world!'
>>> x + y
'Hello, world!'
2、字符串表示 str 和 repr
str函数会把值转换为合理的字符串,以例用户可以理解
repr函数会创建一个字符串,以合法的python表达式的形式来表示值
>>> print str('Hello,world!')
Hello,world!
>>> print repr('Hello,world!')
'Hello,world!'
3、长字符串、原始字符串、Unicode
3.1 长字符串:如果需要写一个非常长的字符串,需要跨行,可以使用三个引号代替普通引号。
>>> print '''This is a very long string.
It continues here.
And it's not over yet.'''
注意:精通字符串也可以跨行,一行之中最后一个字符是反斜线
>>> print 'Hello, \
world!'
Hello, world!
3.2 原始字符串:原始字符串以r开头,不会把反斜线当做特殊字符,不能在原始字符串的结尾输入反斜线。
>>> print r'c:\Program Files\python' #原始字符串以r开头
c:\Program Files\python
>>>
>>> print r'This is illegal\' #不能在原始字符串结尾输入反斜线
SyntaxError: EOL while scanning string literal
3.3 Unicode字符串:Unicode字符串以U开头
>>> u'Hello,world!'
u'Hello,world!'
python学习笔记3(字符串)的更多相关文章
- python学习笔记(字符串操作、字典操作、三级菜单实例)
字符串操作 name = "alex" print(name.capitalize()) #首字母大写 name = "my name is alex" pri ...
- Python学习笔记3—字符串
原始字符串 使用\转义或者r,这种方法在网站设置网站目录结构的时候非常管用. >>> dos="c:\news" >>> print dos c ...
- 【Python学习笔记】字符串操作
字符串的表示 python中的字符串是一个常量,可以使用单引号'',双引号""或三引号""" """来创建一个字符串常量 ...
- Python学习笔记(3)-字符串
创建字符串 一对单引号或双引号 >>> 'hello world' 'hello world' >>> "hello world" 'hello ...
- Python学习笔记:字符串
字符串 字符串定义:字符串可以使用一对单引号.双引号或三引号来定义,即便是单个字符也会当做字符串来处理(Python中没有字符类型,单个字符也就是只有一个字符的字符串而已). 原始字符串:字符串中反斜 ...
- python学习笔记(一)---字符串与列表
字符串的一些处理 字符串的大小写 name="lonmar hb" print(name.upper())#全大写 print(name.lower())#全小写 print(na ...
- 【Python学习笔记】字符串拼接方法(5种)总结
字符串的 5 种拼接方法: “+”号 “,”号 直接连接 格式化 多行字符串拼接 第一种:“+”号 print("Hello"+"Python") 打印结果: ...
- python学习笔记(二)-字符串方法
python的字符串内建函数: #====================常用方法=============================name = 'besttest' new_name = n ...
- Python学习笔记----操作字符串
1.字符串相加.列表相加.列表和字符串不能混着使用 #序列相加 a="hello" b="python" c=a+b print("字符串相加的结果& ...
- Python学习笔记之字符串
一.字符串格式化 >>> format="Hello,%s. %s enough for ya?" >>> values=('World','H ...
随机推荐
- [未完成][Mooc]关于IO总结
整个课程的大纲:1.编码问题.2.File类的使用3.RandomAccessFile的使用4.字节流的使用.5.字符流的使用.6.对象的序列化和反序列化. 视频1:文件的编码Eclipse的一大特点 ...
- 回溯(UVA129)
POINT: 如何判断是否包含连续重复子串? 判断 当前串 的 后缀 啦~~~ You have been employed by the organisers of a Super Krypton ...
- CSS3 box-flex属性和box-orient属性
比较有意思的是虽然目前没有浏览器支持box-flex,box-orient属性,但CSS3问世以来,这两个属性却一直很火.2014年阿里校招第5题要求使用CSS3中的功能实现三个矩形的布局,总的宽度为 ...
- jQurey对表单表格的操作及更多应用(方法型)
- Ehcache(2.9.x) - API Developer Guide, Cache Extensions
About Cache Extensions Cache extensions are a general-purpose mechanism to allow generic extensions ...
- Nginx - SSI Module
SSI, for Server Side Includes, is actually a sort of server-side programming language interpreted by ...
- 【转载】Apache kafka原理与特性(0.8V)
http://blog.csdn.net/xiaolang85/article/details/37821209 前言: kafka是一个轻量级的/分布式的/具备replication能力的日志采集组 ...
- React-Native错误笔记-EPERM
运行react-native run-android时出现错误 EPERM:operation not permitted,lstat .............. 解决办法:用Android Stu ...
- 第六篇、微信小程序-form组件
表单: 将组件内的用户输入的<switch/> <input/> <checkbox/> <slider/> <radio/> <pi ...
- ZipArchive 的使用
新建一个项目,首先添加 System.IO.Compression.FileSystem 引用. 解压文件 using System.IO.Compression; namespace cl { st ...