Answers for "python case sensitive when dealing with identifiers"

0

python case sensitive when dealing with identifiers

# Pythons case sensitive everywhere
# Youll never come across a case where it doesnt care.
# in pythons eyes ABC is completely different from abc
# same with strings and numbers

abc != ABC # when referring to identifier names
Posted by: Guest on April-06-2022

Python Answers by Framework

Browse Popular Code Answers by Language