При работе с идентификаторами чувствителен к корпусу Python

# 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
Orion