python 字符串
[编程语言教程]

str 用合理的方式转换为字符串

print(str(”hello,
world!”))

‘hello,

world!‘

repr 用合法的python表达式表示

print(repr(”hello,
world!”))
‘hello,
world!‘

 

长字符串

要表示很长的字符串可以用三引号(字符串内的引号无需转义)

原始字符串

不以特殊的方式处理反斜杠,让字符串的每个字符保持原样,可在字符串中包含原本无法包含的字符

 

print(‘C:
owProgram‘)

C:

owProgram

print(r‘C:
owProgram‘)

C:
owProgram

Unicode bytes bytearray

Unicode 表示文本

每个Unicode字符都用一个码点表示,码点是Union标准给每个字符一个指定的数字。要使用时,用16位或32位的十六进制变量(加上前缀u或U)或用字符的Unicode名称N{name}

“uooC6”

“Uooo1F60A”

“N{cat}”

bytes
创建字符串(不可以改变字符串)

bytearray

创建字符串(可以改变字符串)

 

常规字符串也可跨多行,只需加上

print(”hello,
world!“)

hello,world!

 

转义

换行

 

python 字符串

原文地址:https://www.cnblogs.com/wcacr/p/14688200.html

hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » python 字符串