python squre code example Example: python square number ## Two ways to square the number x x ** 2 # Returns: 9 pow(x, 2) # Returns: 9