Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Python Basics Types and Branching If, Else and Elif

Itsa Snake
Itsa Snake
3,851 Points

Python: if statement with string, ignoring case

Is it possible to check if a string matches a value, ignoring the case?

e.g. first_name = input("your first name") if first_name == "Sam": #do something

The above would only work if they entered Sam not sam

2 Answers

Steven Parker
Steven Parker
229,744 Points

Case insensitivity is commonly achieved by converting the string case and matching against a pre-converted literal:

if first_name.upper() == "SAM":
Itsa Snake
Itsa Snake
3,851 Points

well that's incredibly logical. Thanks very much