+ 1
tell me about variables
please tell me about dell operator . And how to use variables
3 Antworten
+ 2
variables are named locations in a program to store values given to them...
x = 12
print(x)
answer will be....
12
because python remembers the values of x...
rules...
1. the name of a variable must begin with a character.
2. the name should have no special symbols other than underscore .. _
3. variable name can have number other than first place..
0
thx
0
your welcome