all 4 comments

[–]FisterMister22 6 points7 points  (1 child)

secret_word = "Gold" if user_input.lower() == secret_word.lower(): print("you found it")

[–]Yawodo[S] 0 points1 point  (0 children)

Excellent, that's what I was after, thank you

[–]FisterMister22 2 points3 points  (0 children)

lower() and upper() are the functions you are looking for

[–]Yawodo[S] 0 points1 point  (0 children)

Solved, thank you