Answers for "how to disregard the case in python"

7

python switch case

def switch_demo(argument):
    switcher = {
        1: "January",
        2: "February",
        3: "March",
        4: "April",
        5: "May",
        6: "June",
        7: "July",
        8: "August",
        9: "September",
        10: "October",
        11: "November",
        12: "December"
    }
    print switcher.get(argument, "Invalid month")
Posted by: Guest on July-26-2020
0

revesing case python

t = "Mr.Brown"
nt = t.swapcase()
print(nt)
#print: mR.bROWN
Posted by: Guest on July-02-2021

Code answers related to "how to disregard the case in python"

Python Answers by Framework

Browse Popular Code Answers by Language