Question: Part B For this part, use the updated ( no syntax errors ) Python functions from Part A , and at the bottom ( where
Part B
For this part, use the updated no syntax errors Python functions from Part A and at the bottom
where it says Start your script here generate a Python script that will:
Ask the user to enter a whole number N
Call the Python functions from Part A to identify and record into a single list, all numbers
n n N that are perfect, narcissistic, or happy using a repetition structure for or while
loop and Pythons append builtin function
For each number in the list, create a different list that identifies the type of number found,
ie if the number if happy h or narcissistic n or perfect p or a combination of two or
more types hn hp pn or hnp
Output to the Python Shell using a print statement the list of numbers found, and the
corresponding list of number types in the format shown below. One way to do this format
is to add another loop that goes through and prints the first entry in the numbers found list
and the number type list, and continues to the second entry, third entry, etc., such that each
number is matched with its number type.
Test case:
enter a large whole number N
is hn
is n
is n
is n
is n
is np
is hn
is n
is n
is h
Files to be submitted on your Canvas Section Site
HWpTaskUCusername.py
HWpTaskUCusername.py
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
