+ 1

What are variables?

30th Jul 2016, 2:38 AM
Narek Tonoyan
Narek Tonoyan - avatar
7 Answers
+ 2
A variable is something that is something that is subject to change. In python terms- you often declare the variable name and then assign a value to it. E.G- example = 'Great' print (example) >>> Great
30th Jul 2016, 2:44 AM
Ronnie
Ronnie - avatar
+ 1
You can just about assign any value to a variable. Bare in mind what type of data you are assigning, so if you are assigning a string dont forget your quote marks
30th Jul 2016, 2:46 AM
Ronnie
Ronnie - avatar
+ 1
variable are locations where some data through out the programme are stored
30th Jul 2016, 6:02 PM
Aakash Sharma
Aakash Sharma - avatar
+ 1
Variables are letters that can be assigned values. An example is x = 21
9th Aug 2016, 7:27 PM
Allan Cao
Allan Cao - avatar
0
simply variables are placeholders or containers to store value and name them as you desired and call wherever you want in the program
30th Jul 2016, 4:46 AM
sundar
sundar - avatar
- 2
variable is one that has no fixed values user can make changes according to them as per the use.
30th Jul 2016, 8:44 AM
Arbaz
Arbaz - avatar
- 4
Variable is something that changes or placeholder it can be names, objects etc.
30th Jul 2016, 6:16 AM
Nadir Nour
Nadir  Nour - avatar