Answered You can hire a professional tutor to get the answer.
Problem 1: Create an array that contains the days of the week. Problem 2: Create a loop to print the content above. This is what I did:
- Problem 1: Create an array that contains the days of the week.
- Problem 2: Create a loop to print the content above.
This is what I did:
# Variable Definitions
daysOfWeek = ['Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday']
SIZE = len(daysOfWeek)
count = 0
# Printing out the days of the week using a WHILE loop
# Start of WHILE loop
while < 7:
# Output Array Item
print(days)
# Increment loop control variable
count = count + 1
# End of WHILE loop
# Print a blank line
print()