使用python中的自帶庫math
、自帶函式pow
和自帶庫cmath
來對數字進行開根號運算
使用:math.sqrt(數字)
import math
n =int
(input
('數字:'))
x = math.sqrt(n)
print
(x)print
(type
(x))
#開根號後的型別為float
使用:pow(數字,次方)
n =
int(
input
('數字:'))
x =pow
(n,0.5
)print
(x)print
(type
(x))
#開根號後的型別為float
使用:cmath.sqrt(數字)
該方法多用於複數、負數
的開方運算
import cmath
n =int
(input
('數字: '))
x = cmath.sqrt(n)
print
(x)print
(type
(x))
#型別為complex
python中的根號 python怎麼表示根號運算
平方根,又叫二次方根,表示為 如 數學語言為 16 4。語言描述為 根號下16 4。以下例項為通過使用者輸入乙個數字,並計算這個數字的平方根 coding utf 8 filename test.py num float input 請輸入乙個數字 num sqrt num 0.5 print 0....
(一)執行python的幾種方式
源 位元組碼 執行時 m.py m.pyc pvm pvm是python虛擬機器,用於解釋編譯得到的 使用互動命令執行python 在linux shell 下輸入python 2 輸入 print hello wolrd ctrl d退出 執行模組檔案 編輯script.py 檔案如下 frist...
Python 傳送email的幾種方式
python傳送email還是比較簡單的,能夠通過登入郵件服務來傳送,linux下也能夠使用呼叫sendmail命令來傳送,還能夠使用本地或者是遠端的smtp服務來傳送郵件,無論是單個,還是抄送都比較easy實現。先把幾個最簡單的傳送郵件方式記錄下,像html郵件,附件等也是支援的,須要時查文件就可...