Explore Library
Code QuizIntermediate

Lowercasing for Normalization

Identify why this lowercasing step prints a method object instead of text.

Codepython
text = "The QUICK Brown Fox"
normalized = text.lower
print(normalized)

What is the mistake in this text normalization snippet?