how do you convert an integer to a string in python code example
Example 1: 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
Example 2: python test if you can convert to int
if element.isdigit():
newelement = int(element)