String & Integer

Country is a variable and India is the value of that variable. It is a string data type.

>>> country = "India"
>>> print(country)
India

This is an integer data type.

>>> number = "123"
>>> print(number)
123