>> 'spam eggs' #单引号'spam eggs'>>> 'doesn\'t' #使用\来转义单引号"doesn't"" />
当前位置:优草派 > 问答 > Python问答

Python字符串怎么表示?

标签: Python  python字符串  作者: 罗西汉

回答:

Python还可以操作字符串,字符串有多种表现形式。用单引号('……')或双引号("……")标注的结果相同 ,反斜杠 \ 用于转义,实例如下:

>>> 'spam eggs'  #单引号

'spam eggs'

>>> 'doesn\'t'  #使用\来转义单引号

"doesn't"

TOP 10
  • 周排行
  • 月排行