如何用Python進(jìn)行數(shù)學(xué)運算 ?
今天小編要跟大家分享的文章是如何用Python進(jìn)行數(shù)學(xué)運算?熟悉Python的小伙伴們都知道計算機本來就是用來進(jìn)行數(shù)學(xué)計算的,而且無論是C語言還Python,它都會被轉(zhuǎn)換成二進(jìn)制數(shù)字,來讓電腦識別,Python入門新手和正在Python學(xué)習(xí)的小伙伴快來看一看吧,希望能夠?qū)Υ蠹矣兴鶐椭?!
今天我們呢就學(xué)習(xí)一下如何用Python進(jìn)行數(shù)學(xué)運算。
要學(xué)習(xí)數(shù)學(xué)計算然少不了運算符了,我們這就先來認(rèn)識一下Python中的運算符。
名字如下:
? + plus 加號
? - minus 減號
? / slash 斜杠
? * asterisk 星號
? % percent 百分號
? < less-than 小于號
? > greater-than 大于號
? <= less-than-equal 小于等于號
? >= greater-than-equal 大于等于
有沒有注意到以上只是些符號,沒有運算操作呢?寫完下面的練習(xí)代碼后,再回到上面的列表,寫出每個符號的作用。例如 + 是用來做加法運算的。
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
通過上面代碼的運行,你將得到下面的結(jié)果,自己動手操作一下是不是正確呢?
$ 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寫的運算實例,大家課下可以照著源碼多多練習(xí)一下。
以上就是馬哥教育今天為大家分享的關(guān)于如何用 Python進(jìn)行數(shù)學(xué)運算的文章,希望本篇文章能夠?qū)φ?strong>學(xué)習(xí)Python?和從事Python相關(guān)工作的小伙伴們有所幫助,想要了解更多相關(guān)知識記得關(guān)注馬哥教育官網(wǎng),每天都會有大量優(yōu)質(zhì)內(nèi)容與大家分享!
聲明:文章來源于網(wǎng)絡(luò),侵刪!