- 1
How to make var in python
XOXO
3 Réponses
+ 2
There is no var in python.
python self understand different types of data type.
a = 10 #int
a = 'abc' #string
+ 1
See the Python lesson. I think that is one of the first things you learn.
0
Variable format is
var_name = value
#The value could be of any type. Integer, string, float, and it can even be a list, dictionary, and tuple which you will learn later on