Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

1052 uri solution

#Isfak Ahmed
x = int(input())
obj = {
    1 : "January",
    2 : "February",
    3 : "March",
    4 : "April",
    5 : "May",
    6 : "June",
    7 : "July",
    8 : "August",
    9 : "September",
    10 : "October",
    11 : "November",
    12 : "December",
}
list = [1,2,3,4,5,6,7,8,9,10,11,12]
if x in list:
    print(obj.get(x))
Comment

PREVIOUS NEXT
Code Example
Python :: pyqt pylatex 
Python :: pyqt5 math 
Python :: how to change the datatype of a row in pandas 
Python :: get csrf_token value in django template 
Python :: python create 2d array deep copy 
Python :: read text from a pdffile python 
Python :: embed_author discord.py 
Python :: replace url with text python 
Python :: simulated annealing python 
Python :: read csv uisng pandas 
Python :: extend stack python 
Python :: open text file in python 
Python :: comparing file content in python 
Python :: python binary to string 
Python :: pandas to dict by row 
Python :: windows alert python 
Python :: pygame keys pressed 
Python :: get_terminal_sizee python 
Python :: django admin image 
Python :: rename columns in dataframe 
Python :: py insert char at index 
Python :: get current directory python 
Python :: cosine interpolation 
Python :: CUDA error: device-side assert triggered 
Python :: how to get key and value from json array object in python 
Python :: not scientific notation python 
Python :: pandas groupby count occurrences 
Python :: 13 digit timestamp python 
Python :: how to make python remove the duplicates in list 
Python :: pd combine date time 
ADD CONTENT
Topic
Content
Source link
Name
6+5 =