how to print a statement in python integer value code example

Example 1: python input integer

# To prompt the user to input an integer we do the following:
valid = False

while not valid: #loop until the user enters a valid int
    try:
        x = int(input('Enter an integer: '))
        valid = True #if this point is reached, x is a valid int
    except ValueError:
        print('Please only input digits')

Example 2: How do you print a integer in python

x = 7
print('Number: ' + str(x))
#str() turns anything inside to a string which allows you to
#add it to another/different string