-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule-0.py
More file actions
32 lines (24 loc) · 798 Bytes
/
Copy pathschedule-0.py
File metadata and controls
32 lines (24 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#JSkye
first_name = input("What is your first name? ")
last_name = input("What is your last name? ")
student_id = int(input("Student ID: "))
#classcount = int(input("How many classes do you have?")
star49 = "*************************************************"
starEnd = "* *"
print(star49)
print(starEnd)
print("*\t" + last_name + ", " + first_name+ " ID: " + str(student_id) )
print(starEnd)
print(star49)
print(starEnd)
myclass =""
roomNummber = 0
d = 1
while(d == 1):
myclass = input("Enter the next class,")
if (myclass == "done"):
d = 0
myclass = ""
if (d == 1):
roomNumber = input("Enter the room number: ")
print(myclass + "\tRoom: " + roomNumber )