0
What are varibles
Please can someone explain what a varible is and what it does
2 ответов
0
another way to say basically the same thing tobias said:
think of a variable as named box in which you can put something. for example:
a = 5
print(a)
in the first line you are opening box named a and putting 5 in it. in the second line you send a as a parameter to function print which means that the box named a is to be opened and it's contents printed to the screen.