learning-to-code/python/areacircle.py

6 lines
42 B
Python
Raw Normal View History

2019-07-02 04:03:07 +00:00
pi = 3.14159
r = 10
print(pi * r ** 2)