110k views
0 votes
Edhesive Assignment 4: Student Schedule... Please help, it would be appreciated. At this point I am so desperate I am willing to venmo money for the answer. Thank you.

User Eunhee Ju
by
6.0k points

1 Answer

3 votes

Answer:

# This assignment requires you to ask for the first name and last name, and then the class number and room number

First_Name = input("first name ")

Last_Name = input("last name ")

Student_ID = input("Student ID: ")

print("+++++++++++++++++++++++++++++++++++++++++++++++++")

print("+\t\t" + last_Name + ", " + first_Name + "\t\t" + "Student ID: " + student_ID + "\t\t\t+")

print("+ +")

print("+++++++++++++++++++++++++++++++++++++++++++++++++")

print("* *")

schdule = input("Enter, STOP to end Your Next Class: ")

block_Num = 0

while schdule != "STOP":

block_Num += 1

class_Num = input("Input room no.: ")

print("*\t\t" + "Block " + str(block_Num) + ": " + schdule + "\t\tRoom: " + class_Num + "\t\t*")

schdule = input("Enter STOP to end, next class: ")

print("+ +”)

print("+++++++++++++++++++++++++++++++++++++++++++++++++")

# END #

The program asks the student to enter the student name (first and last) and then enter the room number, and the block number, till the schedule ends or is equal to STOP.

Rest is explained by STOP itself.

Step-by-step explanation:

The answer does not require any further explanation.

User Musterknabe
by
5.2k points