Question: Write a function month () that takes a number 1 and 12 as input and returns the three-character abbreviation of the corresponding month. Do this
Write a function month () that takes a number 1 and 12 as input and returns the three-character abbreviation of the corresponding month. Do this without using an if statement, just string operation. Hint Use a string to store the abbreviation in order. Please use simple python >>> month(1)
'Jan'
>>>month(11)
'Nov'
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
