Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 00-variables.md #161

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ Learn more about great naming practices for dynamic types by watching this 30-mi

#### Naming Gotchas

There are some things that you can't name your variables, such as `and`, `if`, `True`, or `False`. That's because Python uses these names for program control structure.
In Python, certain words are called keywords because they are reserved for specific purposes and have predefined meanings in the language. These keywords cannot be used as variable names because they are essential for defining the structure and logic of Python code, That's because Python uses these names for program control structure.

You can't start your variable name with a digit, although your variable name can end in a digit. Your variable name can't contain special characters, such as `!`, `@`, `#`, `$`, `%` and more.

Expand Down