print(abs(3.5)) #abs函式取絕對值
print(abs(-3.5))
print(divmod(25.0,6))#divmod函式取地板除和餘數,返回乙個元組
print(pow(3,4,80))#pow函式取3的4次方返回,如果第3個引數存在,則繼續和第3個引數取餘,
print(hex(255))#hex函式取16進製制
print(hex(230948231))
print(oct(255))#oct函式取8進製
print(oct(230948231))
print(chr(89))#chr函式取數值的 ascii碼字元
print(ord('y'))#ord函式ascii碼字元的數值
執行結果:
3.53.5
(4.0, 1.0)
10xff
0xdc3fd87
0o377
0o1560776607y89
python關於數字轉換內建函式的細節
int long和float操作場景分為兩個部分 1 如果操作的是數字的時候 printlong 12 printint 3 printlong 12.3 printint 3.6 printfloat 41.5 測試結果 123 12341.5 結果分析 小數轉換成整數時,會把小數部分拋棄,而不是...
python內建函式 python的內建函式 方法
1 input 輸入內容時要將內容用引號引起來 input 請輸入密碼 input 請輸入登入名 name input 請輸入姓名 print hello,name 請輸入姓名 binla hello,binla 在列表後邊追加乙個元素 3 extend 在列表之後追加乙個列表 4 insert 位...
python的內建函式
總結了python中常用的內建函式。字串join 拼接字串 完整的簡寫 str.join iterable 例子 a qwe join a q w e 注意 這個join函式與os.path.join函式時不同的。os.path.join的簡寫是 os.path.join a,p 例子 os.pat...