eshuru
1
Tell us what’s happening:
QUESTION 2 HAS ALL CORRECT RULES FOR PYTHON VARIABLES, WHICH IS THE INCORRECT?
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36
Challenge Information:
Understanding Variables and Data Types - How Do You Declare Variables and What Are Naming Conventions to Name Variables?
You should do a web search for this information
ILM
3
Variable names must start with a letter or an underscore.
are name and _name valid variable names? that means also that variables like 8name would not be valid. is that true?
Variable names are case-insensitive.
this means that name and Name are the same variable. Is that true?
Variable names cannot use Python reserved keywords.
that means you can’t use def or if as variable names, is that true?
Variable names can contain letters, numbers, and underscores
that means that bla4_ is a valid variable name, but bla-bla is not. Is that true?
system
Closed
4
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.