python字串声明:
单引(‘),
双引("),
三引(‘‘‘ 或 """").
python字串前缀:
r表示原生字串, 字串内容:
(1)不能包含声明符(除非转义,但转义符也会作为字串内容.)
(2)不能奇数转义符结尾(实质也是避免最后声明符转义)
简言之, 原生字串的写法一般用于正则表达式.
u表示Unicode字串.
注意: python 2.x中默认不是Unicode字符串, python 3.x默认全是Unicode字符串.
时间: 2024-10-10 02:14:32