数字与表达式——长字符串、原始字符串和Unicode

如果需要写一个非常非常长的字符串,它需要跨行,那么,他可以使用三个引号代替普通引号
print ''' This is a very long stirng.
It contunes here
And it's not here yet.'''
 This is a very long stirng.
It contunes here
And it's not here yet.
也可以使用三个双引号"""Like This """
反斜线也可以跨行
1+2+ \
   4+5
Out[4]: 12
原始字符串
换行符 可以写为 \n
print 'Hello,\nworld!'
Hello,
world!
也可以使用反斜线对其本身转义
print 'C:\\nowhere'
C:\nowhere
原始字符串 r
print r'C:\nowhere'
C:\nowhere
如果希望原始字符串只以一个反斜线结尾的话,把反斜线单独做一个字符串处理
print r'C:\Program Files\foo\bar' '\\'
C:\Program Files\foo\bar
Unicode字符串使用u前缀,就像原始字符串使用r一样
u'Hello,world!'
Out[10]: u'Hello,world!'
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值