print()函式的用法有以下幾種:不帶引號、搭配單引號、搭配雙引號、搭配三引號
注意⚠️:單引號、雙引號是英文輸入法下的單引號和雙引號!三引號是英文輸入法下的三個單引號!
1.不帶引號:讓計算機讀懂括號裡的內容,列印最終的結果
2.帶單引號:讓計算機無需理解,原樣列印括號中的內容
3.帶雙引號:讓計算機無需理解,原樣列印括號中的內容,可以輸出內容中的單引號
4.帶三引號:實現換行
1view code#無引號
2print(123)3#
單引號4
print('
hello,world')
5#雙引號6
print("
hello,world")
7#三引號實現跨行輸出
8print('''
9hello
10world
''')
轉義字元
特徵:反斜槓+想要實現的轉義功能首字母
比如換行\n代表【+newline】;退格\b代表【+backspace】;回車\r代表【+return】
print函式和轉義字元
1 print函式 字串另存檔案 fp open d test.txt a print helloworld file fp fp.close 2 轉義字元 n表示換行 print hello nworld t 四個空格 print hello tworld r 覆蓋 print hello rwo...
轉義字元與特殊字元
1 常見的轉義字元 c中定義了一些字母前加 來表示常見的那些不能顯示的ascii字元,如 0,t,n等,就稱為轉義字元,因為後面的字元,都表示的不是它本來的ascii字元意思。轉義字元 意義ascii碼值 十進位制 a響鈴 bel b退格 bs 將當前位置移到前一列 f換頁 ff 將當前位置移到下頁...
python print 函式與print語句區別
在python 2中,print語句最簡單的使用形式就是print a,這相當於執行了sys.stdout.write str a n 如果你以逗號為分隔符,傳遞額外的引數 argument 這些引數會被傳遞至str 函式,最終列印時每個引數之間會空一格。例如,print a,b,c相當於sys.s...