#Python(040)逸出字元
#\' 單引號
#\" 雙引號
#\\ 反斜線
#\a 響鈴
#\b Back space 鍵
#\f 換頁
#\n 換行
#\r 游標移到最左
#\o 8進位表示
#\x 16進位表示
#\t Tab
#\v 垂直定位
ch1 = 'Mother\'s Day is a celebration honoring the mother of the family'
ch2 = "Mother's Day is a celebration honoring the mother of the family"
ch3 = "Mother's Day is a celebratio\n honoring \the mother of the family"
print(ch1) #顯示\'單引號
print(ch2) #如果是使用雙引號定義字串時可不必
#使用逸出字元"\'"單引號可順利顯示
print(ch3) #\t、\n的使用
文章標籤
全站熱搜
留言列表