''' Purpose: show int and float numeric processing ''' # set numerics of interests x = 2 n = 0.5 # compute x to the nth power value = x ** n # 2 ^ 0.5 # display result print( value )