Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

12177490 #21

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions assignment_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ def lower_case(string):

"""

### your code starts here

### your code ends here
lower_string = string.lower()

return lower_string

Expand All @@ -37,8 +35,6 @@ def upper_case(string):

"""

### your code starts here

### your code ends here
upper_string = string.upper()

return upper_string
8 changes: 4 additions & 4 deletions assignment_2b.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""
Write a documentation for the simple function below. Your partner will have to
implement the function, without knowing the code. Send your partner the
documentation and see if he can work with it.
No cheating! Don't show or tell hem the code directly
Arguments two string values you want to store and combine

Returns a dictionary that contains first string value in lower case (L), second string value in upper case (U) and the combined
outcome of both string inputs (C).
"""
def function_2b(string_1, string_2):

Expand Down
8 changes: 4 additions & 4 deletions assignment_2c.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
"""
Write a documentation for the simple function below. Your partner will have to
implement the function, without knowing the code. Send your partner the
documentation and see if he can work with it.
No cheating! Don't show or tell hem the code directly
Arguments: w, x, y, z

Returns a dictionary containing the following transformation labels and their outcomes
Multiply and divide x and y in respective order, add and substract for values x and y.
"""
def function_2c(w, x, y, z):

Expand Down