Python基礎學習篇-2-數值運算和字串
一、數值運算子
1、運算子
+,-,* 和 / 與其它語言一樣,括號 (()) 用於分組
2、int 和 float
整數(例如,2, 4, 20 )的型別是 int,帶有小數部分的數字(例如,5.0, 1.6)的型別是 float。
3、/ 、 //、 %
除法(/)永遠返回一個浮點數。如要只返回整數結果(丟掉任何小數部分),可以使用 // 運算子(floor division);要計算餘數可以使用 %
>>> 17 / 3 # classic division returns a float
5.666666666666667
>>>
>>> 17 // 3 # floor division discards the fractional part
5
>>> 17 % 3 # the % operator returns the remainder of the division
2
>>> 5 * 3 + 2 # result * divisor + remainder
17
4、** 冪乘方
還可以使用 ** 運算子計算冪乘方 [1]:
>>> 5 ** 2 # 5 squared
25
>>> 2 ** 7 # 2 to the power of 7
128
5、 = 賦值
等號( '=' )用於給變數賦值。賦值之後,在下一個提示符之前不會有任何結果顯示:
>>> width = 20
>>> height = 5*9
>>> width * height
900
變數在使用前必須 “定義”(賦值),否則會出錯:
>>> # try to access an undefined variable
... n
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'n' is not defined
6、整數和浮點數的混合計算中,整數會被轉換為浮點數:
>>> 3 * 3.75 / 1.5
7.5
>>> 7.0 / 2
3.5
7、互動模式中,最近一個表示式的值會賦給變數 _。這樣我們就可以把它當作一個桌面計算器,很方便的用於連續計算,例如:
>>> tax = 12.5 / 100
>>> price = 100.50
>>> price * tax
12.5625
>>> price + _
113.0625
>>> round(_, 2)
113.06
此變數對於使用者是隻讀的。不要嘗試給它賦值 —— 你只會建立一個獨立的同名區域性變數,它遮蔽了系統內建變數的魔術效果。
除了 int 和 float,Python 還支援其它數字型別,例如 Decimal 和 Fraction。Python 還內建支援 複數,使用字尾 j 或 J 表示虛數部分(例如,3+5j)。
二、字串
1、引用方式:單引號或雙引號
python中可以用單引號 ('...') 或雙引號 ("...") 標識 字串。 可以用來轉義引號:
>>> 'spam eggs' # single quotes
'spam eggs'
>>> 'doesn't' # use ' to escape the single quote...
"doesn't"
>>> "doesn't" # ...or use double quotes instead
"doesn't"
>>> '"Yes," he said.'
'"Yes," he said.'
>>> ""Yes," he said."
'"Yes," he said.'
>>> '"Isn't," she said.'
'"Isn't," she said.'
在互動式直譯器中,輸出的字串會用引號引起來,特殊字元會用反斜槓轉義。雖然可能和輸入看上去不太一樣,但是兩個字串是相等的。
2、r---原始字串
如果你前面帶有 的字元被當作特殊字元,你可以使用 原始字串,方法是在第一個引號前面加上一個 r:
>>> print('C:somename') # here n means newline!
C:some
ame
>>> print(r'C:somename') # note the r before the quote
C:somename
3、字串文字分成多行顯示。
一種方法是使用三引號:"""...""" 或者 '''...'''。行尾換行符會被自動包含到字串中,但是可以在行尾加上 來避免這個行為。下面的示例: 可以使用反斜槓為行結尾的連續字串,它表示下一行在邏輯上是本行的後續內容:
print("""
Usage: thingy [OPTIONS]
-h Display this usage message
-H hostname Hostname to connect to
""")
將生成以下輸出(注意,沒有開始的第一行):
Usage: thingy [OPTIONS]
-h Display this usage message
-H hostname Hostname to connect to
4、字串可以由 + 運算子連線(粘到一起),可以由 * 表示重複:
>>> # 3 times 'un', followed by 'ium'
>>> 3 * 'un' + 'ium'
'unununium'
5、相鄰的兩個字串文字自動連線在一起。:
>>> 'Py' 'thon'
'Python'
它只用於兩個字串文字,不能用於字串表示式:
>>> prefix = 'Py'
>>> prefix 'thon' # can't concatenate a variable and a string literal
...
SyntaxError: invalid syntax
>>> ('un' * 3) 'ium'
...
SyntaxError: invalid syntax
如果你想連線多個變數或者連線一個變數和一個字串文字,使用 +:
>>> prefix + 'thon'
'Python'
這個功能在你想切分很長的字串的時候特別有用:
>>> text = ('Put several strings within parentheses '
'to have them joined together.')
>>> text
'Put several strings within parentheses to have them joined together.'
6、字串也可以被擷取(檢索)。類似於 C ,字串的第一個字元索引為 0 。
Python沒有單獨的字元型別;一個字元就是一個簡單的長度為1的字串。:
>>> word = 'Python'
>>> word[0] # character in position 0
'P'
>>> word[5] # character in position 5
'n'
索引也可以是負數,這將導致從右邊開始計算。例如:
>>> word[-1] # last character
'n'
>>> word[-2] # second-last character
'o'
>>> word[-6]
'P'
請注意 -0 實際上就是 0,所以它不會導致從右邊開始計算。
7、除了索引,還支援 切片。索引用於獲得單個字元,切片 讓你獲得一個子字串:
>>> word[0:2] # characters from position 0 (included) to 2 (excluded)
'Py'
>>> word[2:5] # characters from position 2 (included) to 5 (excluded)
'tho'
注意,包含起始的字元,不包含末尾的字元。這使得 s[:i] + s[i:] 永遠等於 s:
>>> word[:2] + word[2:]
'Python'
>>> word[:4] + word[4:]
'Python'
切片的索引有非常有用的預設值;省略的第一個索引預設為零,省略的第二個索引預設為切片的字串的大小。:
>>> word[:2] # character from the beginning to position 2 (excluded)
'Py'
>>> word[4:] # characters from position 4 (included) to the end
'on'
>>> word[-2:] # characters from the second-last (included) to the end
'on'
有個辦法可以很容易地記住切片的工作方式:切片時的索引是在兩個字元 之間 。左邊第一個字元的索引為 0,而長度為 n 的字串其最後一個字元的右界索引為 n。例如:
+---+---+---+---+---+---+
| P | y | t | h | o | n |
+---+---+---+---+---+---+
0 1 2 3 4 5 6
-6 -5 -4 -3 -2 -1
文字中的第一行數字給出字串中的索引點 0…6。第二行給出相應的負索引。切片是從 i 到 j 兩個數值標示的邊界之間的所有字元。
對於非負索引,如果上下都在邊界內,切片長度就是兩個索引之差。例如,word[1:3] 是 2 。
試圖使用太大的索引會導致錯誤:
>>> word[42] # the word only has 6 characters
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
IndexError: string index out of range
Python 能夠優雅地處理那些沒有意義的切片索引:一個過大的索引值(即下標值大於字串實際長度)將被字串實際長度所代替,當上邊界比下邊界大時(即切片左值大於右值)就返回空字串:
>>> word[4:42]
'on'
>>> word[42:]
''
Python字串不可以被更改 — 它們是 不可變的 。因此,賦值給字串索引的位置會導致錯誤:
>>> word[0] = 'J'
...
TypeError: 'str' object does not support item assignment
>>> word[2:] = 'py'
...
TypeError: 'str' object does not support item assignment
如果你需要一個不同的字串,你應該建立一個新的:
>>> 'J' + word[1:]
'Jython'
>>> word[:2] + 'py'
'Pypy'
內建函式 len() 返回字串長度:
>>> s = 'supercalifragilisticexpialidocious'
>>> len(s)
34
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69942496/viewspace-2654900/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 零基礎學習 Python 之數字與運算Python
- Python基礎學習篇Python
- Python學習-算術運算子,賦值運算子和複合運算子Python賦值
- [Python]學習基礎篇:檔案和目錄Python
- Python基礎之:數字字串和列表Python字串
- 零基礎學習 Python 之字串Python字串
- Python基礎運算分享Python
- 4、python基礎運算和流程控制Python
- JAVA基礎學習-數字與字串學習總結Java字串
- Python的基礎學習(五):運算子Python
- Python數學運算Python
- python基礎學習_01變數Python變數
- Python爬蟲之Scrapy學習(基礎篇)Python爬蟲
- 《Fluid Engine Development》 學習筆記2-基礎UIdev筆記
- Java 基礎 之 算數運算子Java
- python基礎之字串和編碼Python字串
- C++基礎學習2-資料型別C++資料型別
- CTF入門學習2->Web基礎瞭解Web
- 學習Python數學英語基礎重要嗎?Python教程!Python
- Python基礎—字串Python字串
- python基礎學習Python
- python學習:變數與字串Python變數字串
- 學習Python,數學英語基礎很重要嗎?Python
- Python學習手冊——第二部分 型別和運算(1)之字串Python型別字串
- Python基礎篇-Python基礎01Python
- Python學習筆記 - 字串,數字Python筆記字串
- python基礎之字串Python字串
- Python基礎(02):字串Python字串
- [Python基礎]字串操作Python字串
- python基礎學習1Python
- python基礎學習2Python
- python基礎學習五Python
- Python學習:運算元據庫Python
- Python介紹和基礎運用Python
- 數學英語的基礎對學習Python重要嗎?Python
- SHELL之數值運算
- Python學習之路—Python基礎(一)Python
- Python學習之旅(核心程式設計基礎篇6基礎資料型別③)Python程式設計資料型別