Python學習之專用英語篇(2)
原文連結:本辦法學Python
符號英文名稱
+ plus 加號
- minus 減號
/ slash 斜槓
* asterisk 星號
,comma 逗號
% percent 百分號
()parenthesis 圓括號
< less-than 小於號
<= less-than-equal 小於等於號
format string 格式化字串
%s
%d
%r 它的意思是不管什麼都列印出來
x = "There are %d types of people." % 10
binary = "binary"
do_not = "don't"
y = "Those who know %s and those who %s." % (binary, do_not)
print x
print y
print "I said: %r." % x
print "I also said: '%s'." % y
hilarious = False
joke_evaluation = "Isn't that joke so funny?! %r"
print joke_evaluation % hilarious
w = "This is the left side of..."
e = "a string with a right side."
print w + e
執行結果
>>> print(x)
There are 10 types of people.
>>> print(y)
Those who know binary and those who don't.
>>> print("I said:%r."%x)
I said:'There are 10 types of people.'.
>>> print("I also said:'%s'."%y)
I also said:'Those who know binary and those who don't.'.
>>> print("I also said:%r."%y)
I also said:"Those who know binary and those who don't.".
相關文章
- 機器學習之專業英語機器學習
- 密碼學之專業英語密碼學
- 英語學習
- 學習Python數學英語基礎重要嗎?Python教程!Python
- 學習Python,數學英語基礎很重要嗎?Python
- Python學習筆記(語法篇)Python筆記
- CSAPP英語學習系列:Chapter 2: 資料表示APPAPT
- 新概念英語學習助手之全拆解教程
- 數學英語的基礎對學習Python重要嗎?Python
- 英語學習筆記筆記
- 數學常用專業英語
- 專為英語學習打造的影片播放器 DashPlayer播放器
- CSAPP英語學習系列:OSTEPAPP
- CSAPP英語學習系列:PrefaceAPP
- 【英語】再學英語
- 英語及口語學習路線圖
- 專為程式設計師編寫的英語學習指南程式設計師
- Python學習之Craps賭博遊戲篇Python遊戲
- Python爬蟲之Scrapy學習(基礎篇)Python爬蟲
- 溫故知新,基於播客形式學習英語之EnglishPod 365, 英語口語發音注意事項
- 乘風破浪,揚帆出海,專門為英語學習者設計的線上學習平臺之English Pod
- 【Python學習教程】Python常見面試題之Redis篇!Python面試題Redis
- python學習2Python
- 程式設計師英語學習指南程式設計師
- 初級英語學習筆記01筆記
- 大資料網站英語學習大資料網站
- Python學習手冊之Python介紹、基本語法(一)Python
- 英語差能學好Python嗎?學Python有捷徑嗎?Python
- Python 3 學習筆記之——基礎語法Python筆記
- Python學習之函數語言程式設計Python函數程式設計
- 基於AI的英語學習應用WordUp推出"幻想聊天"功能AI
- C++學習篇(2)C++
- 研究生英語期末複習(Unit2)
- 數學不好、英語不好、非本專業,想學python資料分析,能安排嗎?Python
- 如何系統學習C 語言(上)之 基礎篇
- 如何系統學習C 語言(下)之 檔案篇
- Python基礎學習篇Python
- Python入門之web2py框架學習!PythonWeb框架