Exercise: Cubic Root

Requirements:

  1. Design a function cubrt(n) to return the cubic root of n.
  2. Test your function with the following main program
    
    def main():
        a = eval(input("Please input a number - "))
        print("The cubic root of", a, "is", cubrt(a) )
    
    main()