I am newbie in python i want to a input from user and print month name i dont know what i am doing wrong in this code correct me
value=raw_input("Enter value to print month ")
    def switch_demo(argument=value):
        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")
    switch_demo(value)
 
     
    