Python字符串

作者: illaclv | 来源:发表于2017-05-28 10:32 被阅读22次

1.1字符串字面量

spam = "s'a"
spam = 'sa'

1.2转义字符

  • ' 单引号
  • " 双引号
  • \t 制表符
  • \n 换行
  • \ 倒斜杠

1.3 原始字符串

    print (r'string')

1.4三重引号的多行字符串

print('''aaaa
bbbb
cccc''')

三重引号可以使用单引号或者双引号:期间使用所有的引号、制表符、换行都认为是字符串的一部分。

1.5多行注释

  • 单行注释

  • """
    """ 多行注释

1.6 字符串下标切片

字符串可以和列表一样使用切片

1.7字符串 in 和not in 操作符

     'a' in 'abc' 

2.字符串的方法

2.1字符串方法 upper()、lower()、isupper()、islower()

upper()、lower()返回新的字符串。
upper() 改为大写
lower()改为小写
isupper() 判断全是大写
islower()判断全是小写

2.2 isX方法

以下方法返回Ture的情况
isalpha() 只包含字母,且非空
isalnum() 只包含字母和数字,且非空
isdecimal() 只包含数字,且非空
istitle() 只包含大写开头,后面小写的字母,且非空

2.3 startswith() 和 endswith()

'abc'.startswith('ab') -> Ture
'abc'.endswith('bc') -> Ture

2.4 jion() 和 split()

jion() 传入参数数组 将数组拼接成字符串:

','.join(['a','b','c'])
-> 'a,b,c'
' '.join(['a','b','c'])
-> 'a b c'

split() 讲字符串按照空格分隔(默认)成列表

'my name is lhl'.split()
-> ['my','name','is','lhl']
'myABCnameABCisABClhl'.split(‘’)
-> ['my','name','is','lhl']

2.5 使用rjust()、ljust()和center()方法对其文本

rjust()、ljust():通过插入空格来对齐文本,第一个参数为整数长度,用于对齐字符串,第二个人参数可选,为指定填充的字符

'hello'.rjust(10)
'     hello'  #5空格
'hello'.ljust(10,‘*’)
'hello*****'  #5空格

2.6 用strip()、 rstrip()、lstrip()删除空白字符

strip() 返回一个新的字符串

a   = '  hello word   'strip() - > #'hello word'
spam = 'abcgjhgjhjcba'.strip('abc') - > #‘gjhgjhj’

strip()参数中的字符串顺序不影响执行的结果,只要两端出现字符串就删除

用pyperclip()模块拷贝粘贴字符串

pyperclip是一个第三方框架,首先要安装。

#import pyperclip
pyperclip.copy('hello word') ->将字符串发送到剪贴板
pyperclip.paste() -> 从剪贴板取出字符串

相关文章

  • python基础知识(3)

    python字符串 python转义字符 python字符串运算符 python字符串格式化 python格式化操...

  • python count()方法详解

    Python count()方法 Python 字符串 描述 Python count() 方法用于统计字符串里某...

  • python字符串格式化符号与内建函数资料表

    python字符串格式化符号: Python 的字符串内建函数 Python 的字符串常用内建函数如下:

  • 字符串操作方法

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

  • python字符串相关函数

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

  • 2018-09-28自学习资料

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

  • 字符串内置函数

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

  • 2018-07-18 字符串资料(函数方法)

    Python3字符串资料 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,...

  • day4 字符串自主操作

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

  • Day3-整理

    Python3字符串 Python访问字符串中的值 Python中的字符串用单引号(')或双引号(")括起来,同时...

网友评论

    本文标题:Python字符串

    本文链接:https://www.haomeiwen.com/subject/nivgxxtx.html