0
I didn't understand this
>>> this_is_a_normal_name = 7 >>> 123abc = 7 SyntaxError: invalid syntax >>> spaces are not allowed SyntaxError: invalid syntax
6 Answers
+ 3
You can't start variable names with digits!
+ 1
it's possible, but not necessary.
instead of ::
my_Var = 7
you could use
myVar = 7
+ 1
Yes
0
Should we give underscore after every word?
0
Okay.. Instead of giving space we should give underscore?
0
Okay thank you so much