Python Variables
In python, defining variables is just assigning a value to it. We don't have to declare the variable separately and define it's values to it.
a = 2
b = "Hello world!"
In python, defining variables is just assigning a value to it. We don't have to declare the variable separately and define it's values to it.
a = 2
b = "Hello world!"