Escape Character
跳脫字元
# 第一種方式
# 使用跳脫字元
print('This is Jason\'s notebook.')
# 第二種方式
# 使用雙引號
print("This is Jason's notebook.")print("\\' is \'") # 跳脫單引號
print('\\" is \"') # 跳脫雙引號
print('\\t is \t') # tab鍵的結果
print('\\n is \n') # enter鍵的結果
print('\\\\ is \\') # 打印出\Last updated