-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstage0 task.
More file actions
50 lines (50 loc) · 1.56 KB
/
Copy pathstage0 task.
File metadata and controls
50 lines (50 loc) · 1.56 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# Team leucine information
team_info = {
"Alo Yetunde": {
"Slack Username": "MaryAde364",
"Email": "aloyetunde99@gmail.com",
"Hobby": "Reading",
"Country": "Nigeria",
"Discipline": "Biochemistry",
"Preferred Programming Language": "Python"
},
"Oluchi Bolanle": {
"Slack Username": "Oluchi Bolanle",
"Email": "oluchibolanle@gmail.com",
"Hobby": "Journaling",
"Country": "Nigeria",
"Discipline": "Biochemistry",
"Preferred Programming Language": "Python"
},
"Adewunmi Ifeoluwa": {
"Slack Username": "Ifeoluwa",
"Email": "iadewunmi39@gmail.com",
"Hobby": "Reading",
"Country": "Nigeria",
"Discipline": "Physiology",
"Preferred Programming Language": "Python"
},
"Adedayo Adeboye": {
"Slack Username": "Adedayo",
"Email": "timsonad09@gmail.com",
"Hobby": "Playing games",
"Country": "Nigeria",
"Discipline": "Pharmacy",
"Preferred Programming Language": "Python"
},
"Omojuwa Iyinoluwa": {
"Slack Username": "Iyinomj",
"Email": "iyinomojuwa1@gmail.com",
"Hobby": "Cooking",
"Country": "Nigeria",
"Discipline": "Biotechnology",
"Preferred Programming Language": "Python"
}
}
# Printing the organized output
print("Team Information:\n")
for name, details in team_info.items():
print(f"Name: {name}")
for key, value in details.items():
print(f"{key}: {value}")
print("-" * 40) # Separator for readability