Python - How to make user input not case sensitive?

后端 未结 3 1606
不知归路
不知归路 2021-01-15 05:28

I\'m new to Python and could really use some help on this. I want to create a function to filter which files I want to open and which months and day specifically. That way,

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-01-15 06:00

    I am new too but I think you should look at string functions. Presuming you use python 3 since you use input and get no ValueError, you can just add .lover().title() after the parentheses of the input

    Example:

    city = city_options.index(input('\nInsert name of the city to analyze! (Chicago, New York City, Washington)\n').lower().title())
    

    Should do the trick as like If you input cHIcaGO it will be converted to Chicago instantly.

    Hope it helps!

    Edit:(After correcting misspelling of lower() function tried it on webbrowser, pycharm and Python itself. Works just fine for me(I'm using python 2.7 so I corrected all inputs as raw_input,If you are using python 3 you don't have to change them. ).)

提交回复
热议问题