0

What are varibles

Please can someone explain what a varible is and what it does

19th Jul 2016, 9:51 AM
oscar537
oscar537 - avatar
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.
19th Jul 2016, 11:26 AM
RedAnt
RedAnt - avatar