零基礎Python教程-如何用Python進行數學運算
今天和大家分享一下零基礎Python教程—如何用Python進行數學運算,計算機本來就是用來進行數學計算的,而且無論是C語言還Python,它都會被轉換成二進制數字,來讓電腦識別,所以今天我們呢就學習一下如何用Python進行數學運算。
要學習數學計算然少不了運算符了,我們這就先來認識一下Python中的運算符。
名字如下:
? + plus 加號 ? - minus 減號 ? / slash 斜杠 ? * asterisk 星號 ? % percent 百分號 ? < less-than 小于號 ? > greater-than 大于號 ? <= less-than-equal 小于等于號 ? >= greater-than-equal 大于等于
有沒有注意到以上只是些符號,沒有運算操作呢?寫完下面的練習代碼后,再回到上面的列表,寫出每個符號的作用。例如 + 是用來做加法運算的。
1 print "I will now count my chickens:"
2
3 print "Hens", 25 + 30 / 6
4 print "Roosters", 100 - 25 * 3 % 4
5
6 print "Now I will count the eggs:"
7
8 print 3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6
9
10 print "Is it true that 3 + 2 < 5 - 7?"
11
12 print 3 + 2 < 5 - 7
13
14 print "What is 3 + 2?", 3 + 2
15 print "What is 5 - 7?", 5 - 7
16
17 print "Oh, that's why it's False."
18
19 print "How about some more."
20
21 print "Is it greater?", 5 > -2
22 print "Is it greater or equal?", 5 >= -2
23 print "Is it less or equal?", 5 <= -2
通過上面代碼的運行,你將得到下面的結果,自己動手操作一下是不是正確呢?
$ Python ex3.py
I will now count my chickens:
Hens 30 Roosters 97
Now I will count the eggs:
7
Is it true that 3 + 2 < 5 - 7?
False
What is 3 + 2? 5 What is 5 - 7? -2
Oh, that's why it's False. How about some more.
Is it greater? True Is it greater or equal?
True Is it less or equal? False
$
以上就是一個用Python寫的運算實例,大家課下可以照著源碼多多練習一下。
好啦,今天的分享到這里就結束了,希望大家能夠持續關注馬哥教育的官網,每天都會有大量優質的內容與大家分享歐!
聲明:文章來源于網絡,侵刪!