python how to create integer code example
Example 1: python declare int
x = 5
print(type(x))
# Output: <class 'int'>
Example 2: how to convert int in python
score = 89
score = str(score)
x = 5
print(type(x))
# Output: <class 'int'>
score = 89
score = str(score)