可以使用math庫
創(chuàng)新互聯(lián)建站是專業(yè)的鹿城網(wǎng)站建設(shè)公司,鹿城接單;提供網(wǎng)站設(shè)計、網(wǎng)站制作,網(wǎng)頁設(shè)計,網(wǎng)站設(shè)計,建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行鹿城網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!
import matha = 4print math.sqrt(4) # 2
也可以直接利用python的**運(yùn)算符
a = 8a**(1/3) # 開3次方相當(dāng)于1/3次乘方 結(jié)果是2 math中其他常用的數(shù)學(xué)函數(shù):ceil(x) 取頂floor(x) 取底fabs(x) 取絕對值factorial (x) 階乘hypot(x,y) sqrt(x*x+y*y)pow(x,y) x的y次方sqrt(x) 開平方log(x)log10(x)trunc(x) 截斷取整數(shù)部分isnan (x) 判斷是否NaN(not a number)degree (x) 弧度轉(zhuǎn)角度radians(x) 角度轉(zhuǎn)弧度
a?=?[1,?2,?3,?9,?10]
b?=?[4,?5,?6,?7,?8]
c?=?a[:3]?+?b?+?a[3:]
print(c)
#?[1,?2,?3,?4,?5,?6,?7,?8,?9,?10]
#?Solution2:?use?list.insert(index,?element)
a?=?[1,?2,?3,?9,?10]
b?=?[4,?5,?6,?7,?8]
index?=?3
for?i?in?b[::-1]:
a.insert(index,?i)
print(a)
#?[1,?2,?3,?4,?5,?6,?7,?8,?9,?10]
python系統(tǒng)提供了下面常用的函數(shù):
1. 數(shù)學(xué)庫模塊(math)提供了很多數(shù)學(xué)運(yùn)算函數(shù);
2.復(fù)數(shù)模塊(cmath)提供了用于復(fù)數(shù)運(yùn)算的函數(shù);
3.隨機(jī)數(shù)模塊(random)提供了用來生成隨機(jī)數(shù)的函數(shù);
4.時間(time)和日歷(calendar)模塊提供了能處理日期和時間的函數(shù)。
注意:在調(diào)用系統(tǒng)函數(shù)之前,先要使用import 語句導(dǎo)入 相應(yīng)的模塊
該語句將模塊中定義的函數(shù)代碼復(fù)制到自己的程 序中,然后就可以訪問模塊中的任何函數(shù),其方 法是在函數(shù)名前面加上“模塊名.”。
希望能幫到你。
insert()是Python中的內(nèi)置函數(shù),可將給定元素插入列表中的給定索引。
python的insert函數(shù)中有兩個必填參數(shù),第一個是填充的位置,第二個是填充的內(nèi)容。必須有小數(shù)點(diǎn),不然報錯。一般用1.0,就是往下面一行行的寫。
insert()的參數(shù)和返回值
參數(shù):index - the index at which the element has to be inserted.
element - the element to be inserted in the list.
返回值:This method does not return any value but
it inserts the given element at the given index.
1、insert: insert(index,obj)
2、count:count(obj)
3、remove:remove(obj)