#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的使用
image

arrow
arrow
    文章標籤
    Python
    全站熱搜
    創作者介紹
    創作者 愛學習 的頭像
    愛學習

    愛學習

    愛學習 發表在 痞客邦 留言(0) 人氣()