Kasus Python sensitif saat berhadapan dengan pengidentifikasi

# 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