码迷,mamicode.com
首页 > 编程语言 > 详细

python | 变量与数据 | 字符串转义 | 输入多行

时间:2018-01-13 20:52:40      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:odi   pytho   pos   art   nbsp   多行   utf-8   python   star   

 1 # encoding: utf-8
 2 
 3 # 字符串转义
 4 s = I\‘m ok
 5 print(s)
 6 s = Learn \"Python\" in imooc
 7 print(s)
 8 s = Bob said \"I\‘m ok\"
 9 print(s)
10 
11 # r 不进行转义
12 print(r"\ndfd\n\fdfd\n")
13 
14 # 输入多行
15 s = ‘‘‘Python is created by "Guido".
16 It is free and easy to learn.
17 Let‘s start learn Python in imooc!‘‘‘
18 print(s)

 

python | 变量与数据 | 字符串转义 | 输入多行

标签:odi   pytho   pos   art   nbsp   多行   utf-8   python   star   

原文地址:https://www.cnblogs.com/yuzhen233/p/8280231.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!