Assignment for Seminars Lecture on Team-based Coding Projects
Instructions:
-
Fork this repository.
-
Add your group member(s) as collaborators to your repo
-
Do the assignment (together): Clone the repository to your workstation and open assigment_1.py in your favorite editor (all group members). Follow the instructions in the script. When you are finished, you split up for assignment 2. One of you opens 2a, the other two do 2b and 2c (if you are a group of two, the same person does 2b and 2c). Everyone follows the instructions in their script. Once you have pushed all your changes, continue.
-
Create a pull request for me to this (original) repo. (Hint: you can use the "New pull request" button and then do a "compare across forks").
Function 2b:
Convert a string to lower and upper case and combines the two strings
Arguments:
string_1
string_2
Returns:
dictionary containing keys, value pairs (L, string_1 in lower case), (U, string_2 in upper case)
(C, string_1 plus string_2)
Function 2c: This function performs mathematic operations on the given (4) integers. It performs 4 operations:
- Multiplies 2nd and 3rd argument
- Divides 2nd and 3rd argument
- Adds 1st and last argument
- Subtracts 1st and last argument It returns a dictionary with the results of each operation. The keys are the operation names (multiplication, division, etc.)