Welcome!
Join our coding community
Ā© 2024 Ace Coding Academy
Code Examples
Example 1
Valid Variable Names: ā Starts with a letter. ā Contains only letters and numbers. ā No spaces or special characters. ā Uses an underscore _ instead of a space. ā Start with an underscore. ā Descriptive and clear purpose.
age = 25
number1 = 10
user_name = "Alice"
_score = 100
Example 2
Invalid Variable Names: ā Cannot start with a number. ā Hyphens are not allowed. ā Spaces are not allowed. ā Special characters like @, !, $, % are not allowed. ā Reserved keyword in Python have special meaning and cannot be used as variable names.
1number = 10
user-name = "Bob"
full name = "Charlie"
@email = "john@gmail.com"
class = "Math"