Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import math
- a = list('%.15f' %math.pi ) # upto 15 decimal values
- T = int(input())
- for t in range(T):
- i = int(input())
- print(a[1 + i])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement