Variables in Python

Simple variable:

age = 30
Longer names for variables are stylized in Snake Case:
countries_visited = 120
Constants are stylized using capitals:
PI = 3.14
Priting the values:
print(age)
print(countries_visited)
print(PI)