+ 1

tell me about variables

please tell me about dell operator . And how to use variables

15th Aug 2016, 8:52 AM
ROHIT BISHNOI
ROHIT BISHNOI - avatar
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..
15th Aug 2016, 9:35 AM
Aakash Sharma
Aakash Sharma - avatar
0
thx
15th Aug 2016, 9:44 AM
ROHIT BISHNOI
ROHIT BISHNOI - avatar
0
your welcome
15th Aug 2016, 10:31 AM
Aakash Sharma
Aakash Sharma - avatar