forked from microsoft/c9-python-getting-started
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode_challenge_solution.py
31 lines (29 loc) · 1.01 KB
/
code_challenge_solution.py
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
# Assign people to different rooms when they check in based on their names
# When you are done
# Anna should be in room AB
# Bob should be in room AB
# Charlie should be in room C
# Khalid Haque should be in room OTHER
# Xin Zhao should be in room Z
# Ask a user their first name
name = input('What is your name? ')
# If their first name starts with A or B
# tell them they go to room AB
first_letter = name[0:1]
if first_letter.upper() in ('A','B'):
room = 'AB'
# If their first name starts with C
# tell them to go to room C
elif first_letter.upper() == 'C':
room = 'C'
else:
# If their first name starts with another letter, ask for their last name
# If their last name starts with Z, tell them to go to room Z
last_name = input('what is your last name? ')
last_name_first_letter = last_name[0:1]
# if their last name starts with any other letter, tell them to go to room OTHER
if last_name_first_letter == 'Z':
room = 'Z'
else:
room = 'OTHER'
print('Please go to room ' + room)