2018年1月8日 星期一

Python: Input the radius of a circle and compute the area

Python: Input the radius of a circle and compute the area

Python Basic: Exercise-4 with Solution

Write a Python program which accepts the radius of a circle from the user and compute the area.
Python: Area of a Circle
In geometry, the area enclosed by a circle of radius r is πr2. Here the Greek letter π represents a constant, approximately equal to 3.14159, which is equal to the ratio of the circumference of any circle to its diameter.
Python: Area of a circle
Sample Solution:-
from math import pi
r = float(input ("Input the radius of the circle : "))
print ("The area of the circle with radius " + str(r) + " is: " + str(pi * r**2))

=========== RESTART: F:/Python_APSC/py-ex-basic-4.py ============
Input the radius of the circle : 10
The area of the circle with radius 10.0 is: 314.1592653589793
>>> 





沒有留言:

張貼留言

Node-Red --> MQTT --> Fuxa 開源碼網頁式圖控平台

Node-Red --> MQTT --> Fuxa      FUXA(一個開源的 Web HMI / SCADA 自動化監控軟體)的專案設定檔 。 這份設定檔完整定義了 HMI 監控畫面的 後端通訊(MQTT 連線、點位標籤) 與 前端網頁圖形介面(SVG 畫布...