EN
Python - math.pi property example
0 points
The math.pi
property returns π number (3.141592653589793...
).
xxxxxxxxxx
1
import math
2
3
print(math.pi) # 3.141592653589793
Syntax |
xxxxxxxxxx 1 math.pi |
Result | π number (3.141592653589793... ). |
Description |
|