0
Pythons
Hello guys i am actually new here and i really don't know much about programming. the whole thing on the variable is getting me confused
2 Réponses
+ 2
After few weeks it will all make sense.
+ 2
when you start it is sometimes good to think of variables like boxes
a box can contain something for example:
box "name" may contain your name: "shafiu"
and box "age" can contain your age: 22
name = "shafiu
age = 22
-----
you can also show whats in the boxes
print()
now we can show whats in box age
print(age)
output:
22
hope this cleared something up for you :)