笨辦法學python 習題10 那是什麼?

2021-10-02 04:29:44 字數 989 閱讀 1082

繼續繼續繼續熟悉列印轉義

轉義字元

描述

\(在行尾時)

續行符 \\

反斜槓符號 \』

單引號 \」

雙引號 \a

響鈴 \b

退格(backspace) \e

轉義\000 空

\n 換行

\v縱向製表符 \t

橫向製表符 \r

回車 \f

換頁\oyy

八進位制數yy代表的字元,例如:\o12代表換行

\xyy

十進位制數yy代表的字元,例如:\x0a代表換行

\other

其它的字元以普通格式輸出

練習

"i am 6'2\" tall." # 將字串中的雙引號轉義

'i am 6\'2" tall.' # 將字串中的單引號轉義

tabby_cat = "\ti'm tabbed in."

persian_cat = "i'm split\non a line."

backslash_cat = "i'm \\ a \\ cat."

fat_cat = """

i'll do a list:

\t* cat food

\t* fishies

\t* catnip\n\t* grass

"""print (tabby_cat)

print (persian_cat)

print (backslash_cat)

print (fat_cat)

#看看轉義後的字元

print ("%r" %fat_cat)

列印結果

《笨辦法學python》習題38 40

mystuff 然後作者又給出了乙個錯誤的情況 class thing object def test hi print hia thing a.test hello 錯誤原因是test 只可以接受乙個引數,卻給了兩個。也就是 a.test hello 實際上是test a,hello 從這裡開始到...

《笨辦法學Python》 習題3

加分習題 系統 mac os 10.14 python 2.7.10 版本 笨辦法學python 第四版 print i will now count my chickens print hens 25 30 6.0 print roosters 100 25 3 4 print now i wil...

《笨辦法學Python》 習題6

加分習題 系統 mac os 10.14 python 2.7.10 版本 笨辦法學python 第四版 x there are d types of people.10 binary binary do not don t y those who know s and those who s.bi...