question archive Problem 1: Create list (or tuple only, no dictionary) that contains the months of the year

Problem 1: Create list (or tuple only, no dictionary) that contains the months of the year

Subject:Computer SciencePrice:3.86 Bought15

  • Problem 1: Create list (or tuple only, no dictionary) that contains the months of the year. ( do not hardcode the month number)
  • Problem 2: Create loop to print the number and the months of the year from the list. 
  •    The output should like this:

Month 1 is January

Month 2 is February

....

....

Month 12 is December

Optional 1 (not required)

Month 1 is January, ...Happy new year ( Do not use if-then. Do not add the messages to the months list), create another list for greetings.

The output will look like this

Month 1 is January , ...Happy New Year!

Month 2 is February, ...Happy Valentine!

Month 3 is March

Month 4 is April

Month 5 is May

Month 6 is June

Month 7 is July, ...Happy Fourth of July!

Month 8 is August

Month 9 is September

Month 10 is October, ...Happy Halloween!

Month 11 is November, ...Happy Thanksgiving!

Month 12 is December, ...Merry Christmas!

 

Optional 2

Modify the Payroll and/or the MPG program from to store the results in a list/dictionary. Print the list/dictionary when no more calculation is selected.

The output will be something like this for the payroll

Payroll for week xyz

James Bond ....... 21,500

Al Bundy ....... 500

Johnny English ..... 1,200

Total Payroll ....... 23,200

For the MPG will be something like

MPG for zyz truck

Week 1 ..... 12

Week 2 ..... 33

Week 3 ..... 27

MPG Ave ..... 24

pur-new-sol

Purchase A New Answer

Custom new solution created by our subject matter experts

GET A QUOTE

Answer Preview

Problem 1:

#creating month list
months = ["January ", "February", "March", "April", "May", "June", "July"
, "August", "September", "October", "November", "December"]

for i in range(0,12): #iterating over each month
    print("Month",i+1, "is" , months[i]) #display month with number

 

Problem 2:

# Creating a list containing months names
months=["January","February","March","April","May","June","July","August","September","October","November","December"]
# creating list for the greetings
greet=[", ...Happy New Year!",", ...Happy Valentine!","","",", ...Remember the Fallen!","",", ...Happy Fourth of July!","","",", ...Happy Haloween!",
       ", ...Honor Those Who Served!",", ...Merry Christmas!"]
# Now starting for loop for iterating the month names .
for i in range(12):
    # mon_number will contai th month number
    mon_number=i+1
    # Now printing month number and month name. along with the greetings from the greetings list here mon_number is converted to string while printing to avoid datatype error.
    print("Month " + str(mon_number) + " is " + months[i]  + greet[i])
    # the next line is to give command to only print the month number and name without greetings .
    #print("Month " + str(mon_number) + " is " + months[i] )

Please see the attached file for the complete solution