I typed in the following code
def root():
x = int(raw_input("Enter a number:\n"))
y = int(raw_input("Enter the power which you want:\n"))
return x^y
print "Hey, we are learning python!"
print "Let's learn about functions!"
print "The result is:", root()
I get the following error:
y = int(raw_input("Enter the power you want\n:"))
^
Indentation Error: unexpected indent