-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
30 lines (25 loc) · 1020 Bytes
/
Copy pathmain.py
File metadata and controls
30 lines (25 loc) · 1020 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
from py_files.login_register import login_roles
from py_files.functions import wait_for_enter_and_redirect
def cover_page():
subject_code = "CT108-3-1"
intake_code = "NP1F2503IT"
submitted_by = [ # Making tuple inside list. So the data can't be changed.
("Aayush Kumar Gupta", "NP070889"),
("Hemant Bahadur Bam", "NP070904"),
("Monika Paudel", "NP070911"),
("Avash Paudel", "NP070892"),
]
submitted_to = "Bishal Prasad Kurmi"
# Output
print("\n\tGroup Assignment")
print(f"\nSubject Code: {subject_code}")
print(f"\nIntake Code: {intake_code}")
print("\nSubmitted By:")
print("\tGroup: Team 6")
for name, id in submitted_by: #Using loop to print all the values one by one
print(f" • {name} ({id})") #Print the name and their corresponding ID inside submitted_by variable.
print("\nSubmitted to:")
print(f" {submitted_to}")
wait_for_enter_and_redirect(login_roles)
if __name__ == "__main__":
cover_page()