# encoding: utf-8
# 字符串转义
s = 'I\'m ok'
print(s)
s = 'Learn \"Python\" in imooc'
print(s)
s = 'Bob said \"I\'m ok\"'
print(s)
# r 不进行转义
print(r"\ndfd\n\fdfd\n")
# 输入多行
s = '''Python is created by "Guido".
It is free and easy to learn.
Let's start learn Python in imooc!'''
print(s)