C-16-Q013mediumsingle_mcq
The name of a variable must always be:
The name of a variable must always be:
- atwo words
- ba single word (no spaces)
- can English sentence
- da number
ব্যাখ্যা
A variable name must be a single continuous token with no spaces, because a space would make Python read it as two separate items. This is why multi-word names are joined with an underscore or camel case instead.