>Prove the last digit of pi is 3.
import math def main(): for n in range(1000): x = math.sin(math.pi * n) if x > 0.99: break else: print("error") main()
>Prove the last digit of pi is 3.
Hard to argue with that.