首页 > 代码库 > Python引号的用法

Python引号的用法

print "this is 1 ‘"
print ‘this is 2 "‘

print (‘‘‘
    hello,everyone!
    hello,everyone!!
    hello,everyone!!!
    "hello,everyone!!!!"
    ‘hello,everyone!!!!!‘
‘‘‘)


本文出自 “百草素心” 博客,请务必保留此出处http://suxin.blog.51cto.com/535505/1873931

Python引号的用法