Python преобразует вход в нижний регистр

from past.builtins import raw_input

impt = raw_input().lower()
Tame Toad