博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python单引号双引号三引号的区别
阅读量:6241 次
发布时间:2019-06-22

本文共 517 字,大约阅读时间需要 1 分钟。

hot3.png

1、单引号与双引号用于单行,功能上是等价的。

    两者配合使用,减少使用转义符。

  例如: 等价的

   print "I LOVE 'CHINA'"

   print 'I LOVE \'CHINA\''

2、三引号用于多行,内部不使用转移符,原样输出。

  print ''' I LOVE 'CHINA'   '''(等价)

示例:

days="Mon Tue Wed Thu Fri Sat Sun"

months="Jan\nFeb\nMar\nApr\nMay\nJun\nJul\nAug"

print "Here are the days:",days

print "Here are the months:",months

print """

There's something going on here.

with the three double-quotes.
We'll be able to type as much as we like
Even 4 lines if we want or 5,or 6
"""

转载于:https://my.oschina.net/u/1782622/blog/285593

你可能感兴趣的文章
baidu__git_android
查看>>
ZC_源码编译真机烧写_20160424
查看>>
day26-UDP协议无粘包问题
查看>>
使用HTML5的十大原因
查看>>
转发:修饰符
查看>>
【转载】Linux下configure命令详细介绍
查看>>
图片中转站
查看>>
DSP c6678的启动方式
查看>>
【Linux】解决Android Stadio报错:error in opening zip file
查看>>
功能(一):添加影像服务图层
查看>>
选择伊始
查看>>
PHP中继承
查看>>
总结各种容器特点
查看>>
SQL Server高级查询
查看>>
13-Flutter移动电商实战-ADBanner组件的编写
查看>>
ubuntu 16.04 启用root用户方法
查看>>
阿里巴巴矢量图标库
查看>>
南阳理工904
查看>>
1. Two Sum
查看>>
Tomcat学习总结(10)——Tomcat多实例冗余部署
查看>>