refer python variabes pdf: how can an identifier name start with unicode. I read on internet that unicode contains special characters too…
Doubt in python variabes pdf
Hey @stutijain578, unicode contains many different types of classes of characters. So there unicode doesn’t mean all the characters included in the list of unicode characters. Although unicode (as a whole) is incorrect to say. Just a subset of unicode characters may be used. I would suggest you to refer to this instead of the pdf.
I hope you get to understand the naming rules for identifiers.
Happy learning 
For you to understand better , see this too
-
The first character in an identifier must be an alphabet or an underscore and can be followed only by any number alphabets, or digits or underscores. -
They must not begin with a digit. -
Uppercase and lowercase letters are distinct. That is, identifiers are case sensitive. -
Commas or blank spaces are not allowed within an identifier. -
Keywords cannot be used as an identifier. -
Identifiers should not be of length more than 31 characters. -
Identifiers must be meaningful, short, quickly and easily typed and easily read.
I hope this helps you 
1 Like