Wie druckst du eine Ganzzahl 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
Zing