课程
/后端开发
/Python
/初识Python
我的错误在哪呢
2019-01-14
源自:初识Python 3-6
正在回答
注意空格问题
1.版本+语法问题
print "Hello,world!" #这是 Python2.x 的语法 print("Hello,world!") #这是 Python 3.x的语法
2.这个 r 我掐指一算,应该是多余的,可以去掉
3.三个单引号 ''' ''' 是多行注释,如果想要输出的内容中使用 单引号,双引号,在其前面加反斜杠。
print('\"To be,or not to be\":that is the question.\nWhether it\'s nobier in the mind to suffer.')
换行输出用 \n,不是你写代码的时候换个行_(:з」∠)_
白色葬礼
有时候是这样的,不管对错都是不能通过,你刷新或者重进再提交就好了
print r''' "To be, or not to be ": that is the question.'''
print r''' " Whether it's nobler in the mind to suffer.'''
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序