1.換行字元:\n
2.轉義字元(\):\\
3.製表字元(對齊**的各列):\t
print ('4.'''...'''(表示多行內容)學號\t姓名\t語文\t數學\t英語')
print ('
2017001\t曹操\t0\t\t0\t\t0')
print ('
2017002\t周瑜\t0\t\t0\t\t0')
print ('
2017008\t黃蓋\t0\t\t0\t\t0
')
5.python還允許用r''
表示''
內部的字串預設不轉義
print(r'\\\t\\
')
Python資料型別 字串型別
變數名 str 變數值 msg hello world print msg 0 print msg 1 msg hello n print len msg msg hello world print ello in msg print lo w not in msg res print hello ...
Python資料型別 字串
字串 1 python 預設的檔案編碼都是ascii,所以要在編碼的時候加上coding utf 8,中文才不會亂碼。len 函式 是計算字串的長度。正確編碼的長度。b 中文 len b 長度是4 a 中文 decode gbk 或utf 8 print len a 長度是2 2 字串前加r 是不轉...
python資料型別(字串)
計算機人們日常事務的輔助工具,在程式設計中也映 現實世界的分類,因此計算機中也引入類別以便進行抽象分析 數字 字串 元組 列表 字典 int 表示的範圍 2,147,483,648 到 2,147,483,647 例如 0,100,100 num 2147483647 type num 一旦超出,則...