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