-
Notifications
You must be signed in to change notification settings - Fork 31
/
assignment_1.py
44 lines (30 loc) · 907 Bytes
/
assignment_1.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""
In this short exercise you will practice dealing with a merge conflict.
Finish the lower_case function and push your changes to the Github repository.
The fastest one to push is lucky, the others will most likely get a merge
conflict. See if you can fix it :)
"""
def lower_case(string):
"""
Argument:
string -- text you want to turn into lower case
Returns:
lower_string -- lower case version of string
"""
### your code starts here
### your code ends here
return lower_string
"""
Do the same thing again with upper_case, but change the order so everyone
experiences at least 1 merge conflict.
"""
def upper_case(string):
"""
Argument:
string -- text you want to turn into upper case
Returns:
upper_string -- upper case version of string
"""
### your code starts here
### your code ends here
return lower_string