4 lines
86 B
Python
4 lines
86 B
Python
import math
|
|
dig = int(input("how many digits you want: "))
|
|
print(round(math.pi, dig))
|