value**2 #double asterisk raises a value to the power of the next value
def squared(n): print(n**2) squared(4) #Output: 16