Write a Python program. Try to run your program to get it working. It is best to
at least attempt to write the code, even if you don't get it working.
• Create a list that holds 5 names, first names are fine
• Prompt the user to input a name "x of 5", convert to uppercase
• Check the list to see if name already exists
• exists, get a different name
• new, add to the list
• After five, print the final list
Sample output:
Enter 1 of 5 names: john
Enter 2 of 5 names: John
JOHN already exists, try a different name
Enter 2 of 5 names: Ali
Enter 3 of 5 names: Terry
Enter 4 of 5 names: Sal
Enter 5 of 5 names: john
JOHN already exists, try a different name
Enter 5 of 5 names: sal
SAL already exists, try a different name
Enter 5 of 5 names: monica
Complete list of names: ['JOHN', 'ALI', 'TERRY', 'SAL', 'MONICA']
Paste the py file that contains your code. There is no need to show or upload
output or take a screenshot, just give me your program.