The below works and gives 8:
def mypow(a,b): c=a**b print (c) mypow(2,3)
But the below doesn\'t:
def mypow(a,b):