python中三個單引號是什麼意思
實際上3個單引號和3個雙引號不經常用,但是在某些特殊格式的字串下卻有大用處。通常情況下我們用單引號或者雙引號定義一個字串的時候只能把字串連在一起寫成一行,如果非要寫成多行,就得在每一行後面加一個表示連字元,比如:
str1 = "List of name: Hua Li Chao Deng"
而且即使你這樣寫也不能得到期望的輸出:
List of name: Hua Li Chao Deng
實際上輸出是下面這樣的:
>>> str1 = "List of name: ... Hua Li ... Chao Deng" >>> print(str1) List of name: Hua Li Chao Deng
3個引號還有一個特別棒的作用就是:加註釋!
>>> str1 = """ ... List of name: ... Hua Li # LiHua ... Chao Deng # DengChao ... """ >>> print(str1) List of name: Hua Li # LiHua Chao Deng # DengChao
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/3705/viewspace-2835577/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- python 是什麼意思Python
- Python是什麼意思?Python有什麼用?Python
- fluent python是什麼意思Python
- Python是什麼意思?Python幹什麼用的?Python
- python中global是什麼意思?Python
- python中mat是什麼意思?Python
- python中return是什麼意思?Python
- python 複數是什麼意思Python
- 在python裡int是什麼意思Python
- Python中的rad是什麼意思?Python
- python裡面cv是什麼意思Python
- 英文Python是什麼意思?學Python需要什麼基礎?Python
- SQL 兩個冒號連用什麼意思?SQL
- 什麼是字串?Python中字串必須加引號嗎?字串Python
- python UDP程式設計是什麼意思?PythonUDP程式設計
- python資料處理是什麼意思Python
- 災備是什麼意思?怎麼簡單理解?
- ITIL是什麼意思?ITIL是什麼?
- 伺服器過白名單是什麼意思伺服器
- Symmathesy是什麼意思?
- HTML是什麼意思?HTML
- Python多執行緒是什麼意思?有什麼優勢?Python執行緒
- C++ 這個語句中[&]是什麼意思C++
- BGP是什麼意思,一般的BGP機房是什麼意思
- 什麼是API介面,具體是什麼意思?API
- DRBD是什麼意思?優缺點是什麼?
- 等保測評機構是什麼意思?是什麼性質的單位?
- js 中~~是什麼意思?JS
- 加簽是什麼意思?
- mysql中是什麼意思?MySql
- jquery庫是什麼意思jQuery
- bucket是什麼意思?有什麼作用?
- RDP是什麼意思?有什麼用?
- LDAP是什麼意思?有什麼用?LDA
- python中len什麼意思Python
- SNP全稱是什麼? SNP是什麼公司? SNP是什麼意思?
- DHCP是什麼?DHCP伺服器是什麼意思?伺服器
- Python多行註釋符號是什麼?Python符號