Simple Python Programming: Detailed instructions inside the .py file attached.
# 1. Write a program to prompt the user to provide an integer that returns the corresponding day of the week.
# If the user enters 1, print "Sunday". If the user enters 2, print "Monday". If the user enters 3, print "Tuesday". # If the user enters 4, print "Wednesday". If the user enters 5, print "Thursday". If the user enters 6, print "Friday".
# If the user enters 7, print "Saturday".
# If the user inputs a number less than 1 or greater than 7, direct the user to input an integer within the proper range of 1 - 7.
# 2. The program must make use of a list to contain the days of the week, NOT a series of 'if statements'.
# 3. MOST IMPORTANT: Comment every line about what the line is doing, and why, (explain things on every line). It is requiered for grading, and for learning.
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme