Skip to main content

Python 入门基础知识 - 字符串

Python 入门基础知识 - 字符串

实例环境声明

# -*- coding: utf-8 -*-

# version 2.7.13

字符串

Python的字符串用于表示和存储文本,字符串通常由单引号['...'],双引号["..."]或者三引号['''...''',"""..."""]包围。

其中三引号包围的字符串可以由多行组成。

字符串中可以包括数字,字母以及一些控制字符,如换行符、制表符,如

str1 = 'qwe'
print(str1)
str2 = 'qwe123'
print(str2)
str3 = "qwe123"
print(str3)
str4 = 'a = 1 + 2 + 3 ^ 4 * 5'
print(str4)
str5 = 'it can\'t'
print(str5)
str6 = "it can't"
print(str6)

如果需要在字符串中包含控制字符或者表示特殊字符,需要使用转移字符。如:

t = 'Hi,\tWhere are you?'
print(t)
t = 'Hi,\nWhere are you?'
print(t)
t = 'Hi,\rWhere are you?'
print(t)
t = 'Hi,\\nWhere are you?'
print(t)
版权声明

版权声明

durban.zhang 创作并维护的 Walkerfree 博客采用 创作共用保留署名-非商业-禁止演绎4.0国际许可证。本文首发于 Walkerfree 博客(http://www.walkerfree.com/),版权所有,侵权必究。本文永久链接:http://www.walkerfree.com/article/31