发布网友 发布时间:2022-04-21 23:20
共2个回答
热心网友 时间:2022-04-18 05:55
反斜线是转义符,要打印它,再加个反斜线就行了
print 'let\\\'s say "hello,world!"'
这里由于字符串是用单引号括住的,所以对里面的单引号也要加个反斜线
热心网友 时间:2022-04-18 07:13
希望打印出:
let\'s say "hello, world!"
?
>>> str = r'let\'s say "hello, world!"'
>>> str
'let\\\'s say "hello, world!"'
>>> print str
let\'s say "hello, world!"
>>>