美文网首页python
Python - strings

Python - strings

作者: 庵下桃花仙 | 来源:发表于2018-06-03 20:59 被阅读2次

    字符串是Python中最流行的类型之一。 我们可以简单地通过将字符括在引号中来创建它们。 Python将单引号和双引号视为一样。 创建字符串就像为变量赋值一样简单。

    代码

    var1 = 'Hello World!'
    var2 = "Python Programming"
    

    Python不支持字符类型; 这些被视为长度为1的字符串,因此也被视为子字符串。
    要访问子字符串,请使用方括号与索引获取的子字符串。

    例子

    代码

    var1 = 'Hello World!'
    var2 = "Python Programming"
    
    print "var1[0]: ", var1[0]
    print "var2[1:5]: ", var2[1:5]
    

    结果

    var1[0]:  H
    var2[1:5]:  ytho
    

    Updating Strings

    您可以通过(重新)将变量分配给另一个字符串来“更新”现有的字符串。 新值可以与其先前的值相关联,也可以与完全不同的字符串完全相关。

    代码

    var1 = 'Hello World!'
    print "Updated String :- ", var1[:6] + 'Python'
    

    结果

    Updated String :-  Hello Python
    

    转义字符(Escape Characters)

    下表是可用反斜线表示法表示的转义字符或不可打印字符的列表。
    转义字符被解释; 在单引号以及双引号字符串中。

    Backslash notation Hexadecimal character Description
    \ a 0x07 Bell or alert(响铃或警报)
    \ b 0x08 Backspace(退格)
    \ cx Control-x(控制-X)
    \ C-x Control-x(控制-X)
    \ e 0x1b Escape(转义)
    \ f oxoc Formfeed(换页)
    \ M-\ C-x Meta-Control-x
    \ n 0x0a Newline(换行)
    \ nnn Octal notation, where n is in the range 0.7(八进制表示法,其中n在0.7范围内)
    \ r 0x0d Carriage return(回车)
    \ s 0x20 Space(空格)
    \ t 0x09 Tab
    \ v 0x0b Vertical tab(垂直tab)
    \ x Character x(字符x)
    \ xnn Hexadecimal notation, where n is in the range 0.9, a.f, or A.F(十六进制表示法,其中n在0.9,a.f或A.F范围内)

    String Special Operators(字符串特殊操作符)

    假设字符串变量a包含'Hello',变量b包含'Python'

    Operator Description Example
    + 连接 a + b 是 HelloPython
    * 重复 - 创建新字符串,连接相同字符串的多个副本 a*2 是 -HelloHello
    [] 切片 - 给出指定索引的字符 a[1] 是 e
    [ : ] 范围切片 - 给出指定范围的字符 a[1:4] 是 ell
    in 成员 - 如果给定字符串中存在字符,则返回true H in a 是 1
    not in 成员 - 如果给定字符串中不存在字符,则返回true M not in a 是 1
    r / R 原始字符串 - 禁止转义字符的实际含义。 原始字符串的语法与普通字符串的语法完全相同,但原始字符串运算符(即引号前面的字母“r”)除外。 “r”可以是小写字母(r)或大写字母(R),并且必须紧靠第一个引号之前。(下面有例子 ) print r'\n' 打印 \n and print R'\n'打印 \n
    % 格式 - 执行字符串格式 看下面

    String Formatting Operator(字符串格式运算符)

    Python最酷的功能之一是字符串格式运算符%。 这个操作符对字符串是独一无二的,弥补了C的printf()系列的功能。

    例子

    代码

    print "My name is %s and weight is %d kg!" % ('Zara', 21)
    

    结果

    My name is Zara and weight is 21 kg!
    

    以下是可以与%一起使用的完整符号集列表%

    Format Symbol Conversion
    %c character(字符)
    %s 在格式化之前通过str()进行字符串转换
    %i 有符号十进制整数
    %d 有符号十进制整数
    %u 无符号十进制整数
    %o 八进制整数
    %x 十六进制整数(小写字母)
    %X 十六进制整数(大写字母)
    %e 指数表示法(小写'e')
    %E 指数表示法(大写'E')
    %f 浮点实数
    %g %f和%e中的较短者
    %G %f和%E中的较短者
    Symbol Functionality
    * 参数指定宽度或精度
    - 左对齐
    + 显示标志
    <sp> 在正数之前留出空格
    # 根据是否使用'x'或'X',添加八进制前导零('0')或十六进制前导'0x'或'0X'。
    0 从左边填充零(而不是空格)
    % '%%'给你留下一个单独的'%'
    (var) 映射变量(字典参数)
    m.n. m是最小总宽度,n是小数点后显示的位数(如果是appl。)

    Triple Quotes

    Python三重引号通过允许字符串跨越多行,包括逐字NEWLINEs,TABs和任何其他特殊字符。
    三重引号的语法由三个连续的单引号或双引号组成。

    例子

    代码

    para_str = """this is a long string that is made up of
    several lines and non-printable characters such as
    TAB ( \t ) and they will show up that way when displayed.
    NEWLINEs within the string, whether explicitly given like
    this within the brackets [ \n ], or just a NEWLINE within
    the variable assignment will also show up.
    """
    print para_str
    

    结果

    this is a long string that is made up of
    several lines and non-printable characters such as
    TAB (    ) and they will show up that way when displayed.
    NEWLINEs within the string, whether explicitly given like
    this within the brackets [ 
     ], or just a NEWLINE within
    the variable assignment will also show up.
    

    当上面的代码执行时,它会产生以下结果。 请注意,每个特殊字符如何转换为其打印形式,直到“up”之间字符串末尾的最后一个NEWLINE。 并关闭三重报价。 另请注意,NEWLINE会在行尾显示回车符或其转义码(\ n)

    原始字符串不会将反斜杠视为特殊字符。 你放入一个原始字符串的每个字符都是你写它的方式

    例子

    代码

    print 'C:\\nowhere'
    

    结果

    C:\nowhere
    

    现在让我们使用原始字符串。

    代码

    print r'C:\\nowhere'
    

    结果

    C:\\nowhere
    

    Unicode String

    Python中的正常字符串在内部存储为8位ASCII,而Unicode字符串存储为16位Unicode。 这允许更多不同的字符集,包括来自世界上大多数语言的特殊字符。

    代码

    print u'Hello, world!'

    结果

    Hello, world!
    如您所见,Unicode字符串使用前缀u,就像原始字符串使用前缀r一样。

    相关文章

      网友评论

        本文标题:Python - strings

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