Python 中的字符串数据类型


用Python 表示字符串的方式是在引号中标识出一组连续的字符。Python 允许使用单引号或双引号。可以使用切片运算符 ([ ] 和 [:] ) 获取子字符串,其中索引从字符串的开头开始为 0,从结尾的 -1 计算。

示例

加号 (+) 是字符串连接运算符,星号 (*) 是重复运算符。例如,

 实时演示

#!/usr/bin/python
str = 'Hello World!'
print str # Prints complete string
print str[0] # Prints first character of the string
print str[2:5] # Prints characters starting from 3rd to 5th
print str[2:] # Prints string starting from 3rd character
print str * 2 # Prints string two times
print str + "TEST" # Prints concatenated string

输出

将产生以下结果:

Hello World!
H
llo
llo World!
Hello World!Hello World!
Hello World!TEST

更新日期:2020-01-24

超过 3 千次浏览

开启你的 职业生涯

完成课程,获得认证

开始
广告