Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Script in Python. 1. Using PyDev in Eclipse, create the Python module Project5Part1 that accepts an integer value as input from the user. This integer
Script in Python.
1. Using PyDev in Eclipse, create the Python module Project5Part1 that accepts an integer value as input from the user. This integer will represent a month in a year (i.e. 1 is "January"). Create a dictionary object that contains the months of a year; the dictionary key will be the numeric value of the month, and the dictionary value will be the string value of the month. Use an if...then condition to check if the month entered by the user is in the dictionary. Output the string value for the month from the dictionary if found. If not found, display the string "Bad Month" o o Output Example #1 Enter an integer value for a month: 13 Bad month Output Example #2 Enter an integer value for a month: 11 November 2. Using PyDev in Eclipse, copy the Python module Project5Part1 and name the module Project5Part2. Rather than using an if statement to check the user input, use the dictionary's "get()" operation. The "get()" operation should output the string value for the month from the dictionary if found. o o If not found, the "get)" operation should display the string "Bad Month" Output Example #1 Enter an integer value for a month: 22 Bad month Output Example #2 Enter an integer value for a month: 6 JuneStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started