# mypi.py # YOUR NAME(S), DATE # solution must be above this comment # do not change any part of the code below def main(): num = int( input("enter number of terms: ") ) print("estimate of pi is {0:.10f}".format(mypi(num))) main()