Python supports different data types such as integers, floats, strings, and booleans.
x = 10\ny = 3.14\ntext = "Hello Python"\nis_active = True
x = 5\nprint(type(x))