Python(1):HelloWorld

python安裝很簡單,沒有什麼要注意的地方。python

惟一要考慮的是,2.x版本和3.x版本。聽說是改動太大,最好只能獨立維護。不過初學者嘛,最好仍是用新版本的了。shell


1.單引號,雙引號,三個雙引號是等價的。


2.串聯字符串,能夠用+,也能夠不用,直接寫出來就好了函數


3.字符串格式說明符%scode

"John Q. %s" % ("Public")
"John %s%s" % ("Every","Man")

字符串依次被替換到%s的位置blog


4.能夠指定插入字符的長度,若是是數量比字符串短則不處理,若是比插入的字符串長則以空格補充。正數補在左邊,負數補在右邊。
>>> "%5s%s" % ("abc", "def")
'  abcdef' --空格補在左邊
>>> "%-4s%s" % ("abc", "def")
'abc def' --空格補在右邊

5.在字符串裏面的轉義字符,直接在shell中輸入是沒有效果的。可是print函數能夠。
>>> "Rock a by baby, \n\ton the tree top, \t\when the windblows\n\t\t\t the cradle will drop"
'Rock a by baby, \n\ton the tree top, \t\\when the windblows\n\t\t\t the cradle will drop'
>>> print("Rock a by baby, \n\ton the tree top, \t\when the windblows\n\t\t\t the cradle will drop")
Rock a by baby, 
	on the tree top, 	\when the windblows
			 the cradle will drop
相關文章
相關標籤/搜索