Variables: Difference between revisions
Mr. MacKenty (talk | contribs) |
Mr. MacKenty (talk | contribs) |
||
Line 5: | Line 5: | ||
In other words, '''a variable is a storage location for data'''. Variables have names. Some computer language mandate you assign a [[data type]] to variables. When asked for the "official definition" (or best definition) please use the definition stated above. | In other words, '''a variable is a storage location for data'''. Variables have names. Some computer language mandate you assign a [[data type]] to variables. When asked for the "official definition" (or best definition) please use the definition stated above. | ||
=== | === Variables in Python === | ||
<syntaxhighlight lang="python"> | <syntaxhighlight lang="python"> | ||
Revision as of 08:00, 18 June 2019
The official definition: in computer programming, a variable is a storage location paired with an associated symbolic name (an identifier) which contains a value.[2]
In other words, a variable is a storage location for data. Variables have names. Some computer language mandate you assign a data type to variables. When asked for the "official definition" (or best definition) please use the definition stated above.
Variables in Python[edit]
name = "Mr. MacKenty"
position = "Teacher"
# in the example above, we have a variable with the name "name" and the '''value''' of that variable is a string, "Mr. MacKenty"
# there is also a variable named "position" and the value of that variable is "Teacher". In memory, a section of memory has been reserved for a variable with the name "name" and "position".
# variables can change. For example, if we wanted to change the variable position, we could simply:
position = "New Teacher"
# now the value of "position" is "New Teacher".
See also[edit]
You should also look at:
Standards[edit]
- Define the terms: variable, constant, operator, object.