Python 常用术语
python中的字符串文字被单引号或双引号引起来。
'hello'与"hello"相同。
'hello'
"hello"
可以使用print()函数显示字符串:
print()
例如:
print("Hello") print('Hello')
相关文档:
Python 字符串(String)的使用
Python 声明字符串
Python 字符串变量
Python 多行字符串
Python 字符串(Strings)是数组
Python 字符串切片(slice)
Python 字符串负索引(Negative Indexing)
Python 字符串长度(len)
Python 使用in判断字符串
Python 字符串格式化(format)
Python 转义字符