abs() 函式返回數字的絕對值
abs(x)
x–數值表示式
函式返回x(數字,可以是正數,浮點數,複數)的絕對值,如果引數是乙個複數,則返回它的大小
#!/usr/bin/python
print
("abs(-45) : "
,abs(-
45))print
("abs(100.12) : "
,abs
(100.12))
print
("abs(3+4j) : "
,abs(3
+4j))
結果:
abs(-
45):45
abs(
100.12):
100.12
abs(3+
4j):5.0
在python中,複數的表示是【實數部+虛數部】,而虛數在pytho中是使用字尾大寫字母j表示的。因此複數3+4i在python 中表示為3+4j:
ff=3+
4jprint
(ff.real)
# 實數部
print
(ff.imag)
# 虛數部
結果
3.0
4.0
在python中複數可以直接進行加減乘除運算,你可以使用變數來進行也可以使用括號來進行:
f1=3+
4jf2=7-
8jprint
(f1*f2)
print((
3+4j)
*(7-
8j))
結果:
(53+
4j)(53
+4j)
Python3 內建函式 abs
前言 該文章描述了內建函式abs 的使用方法 2020 01 15 天象獨行 0x01 描述 abs 函式返回數字的絕對值 0x02 語法 abs x 0x03 返回值 函式返回x的絕對值 0x04 舉例 uer bin env python coding utf 8 a 2 print abs a...
python內建函式 python的內建函式 方法
1 input 輸入內容時要將內容用引號引起來 input 請輸入密碼 input 請輸入登入名 name input 請輸入姓名 print hello,name 請輸入姓名 binla hello,binla 在列表後邊追加乙個元素 3 extend 在列表之後追加乙個列表 4 insert 位...
python內建函式值raw input 函式
python raw input 用來獲取控制台的輸入。raw input 將所有輸入作為字串看待,返回字串型別。raw input prompt a raw input input input 123 type a type str 字串 a raw input input input runoo...