首页 > 编程语言 > 详细

python学习路程

时间:2018-09-07 12:52:10      阅读:155      评论:0      收藏:0      [点我收藏+]

常用的转义字符还有:

\n 表示换行
\t 表示一个制表符
\\ 表示 \ 字符本身

任务

请将下面两行内容用Python的字符串表示并打印出来:

  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学习路程

原文:https://www.cnblogs.com/jtestroad/p/9603653.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!