How to define variables in Python

In Python, you can define a variable by assigning a value to it. For example:

x = 10

This assigns the value 10 to the variable x.