Question: Create a Python module with a __main__ (in other words, create a runnable Python script), and at least 60 lines of code. vDefine at least
Create a Python module with a __main__ (in other words, create a runnable Python script), and at least 60 lines of code.
vDefine at least 1 class, and at least 1 function for each class you have defined. Your __main__ should instantiate objects of the classes you have designed, and use them to invoke the methods defined in those classes.
vUse list comprehensions to create lists.
vUse dictionary comprehensions to create dictionaries.
vUse at least 1 decision-making statement (if-elif)
vUse at least 1 looping statement (for or while).
vUse at least 1 try-except to catch some exceptions.
vUse the input() function, or command-line arguments, to get some user input
vProduce some, hopefully interesting, output
vAdd comments to make your script easy to understand (not counted toward the 60-line requirement)
Last but not least, be creative, and make sure it runs.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
