课程
/后端开发
/Python
/初识Python
s = 'Python was started in 1989 by "Guido". \n Python is free and easy to learn.'print s
2017-07-31
源自:初识Python 3-5
正在回答
s = 'Python was started in 1989 by "Guido". Python is free and easy to learn.'print s
# \n去掉
s = 'python was started in 1989 by "guido".python is free and easy to learn.'
print s
s = r'''Python was started in 1989 by "Guido".
Python is free and easy to learn.'''
s = 'Python was started in 1989 by \"Guido\". \n Python is free and easy to learn.'print s
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序