This question is different as I did not understand how the other answers were in accordance with my code. I did check the other questions first. I needed something specific to my code. I need .lower() to work for one of my inputs, however I'm not sure where to place it. I'm not acquainted when it comes to functions like these and so I require a little help. A part of my code is...
phone_model = ["s4", "s5", "note", "j5", "s6", "s7", "s6 edge", "s7 edge", "ace", "ace 2"]
model = input("Which model is your Samsung device?")
if model in phone_model:
problems = input("OK, what is the problem with your device?")
I would like the function to convert the answer to MODEL into lower case please.