Python2.X實現計算圓的面積

#計算圓的面積 #coding=utf-8 rStr = raw_input("請輸入圓的半徑:") r = eval(rStr) #將字符串轉化爲數值 import math print(r ** 2 * math.pi) 運行結果:python PS:code import math print(math.sqrt(100)) #開根號 print(10 ** 0.5) #開根號 pr
相關文章
相關標籤/搜索