|
1 | 1 | # Part 1
|
2 | 2 | ## Programming exercises
|
3 | 3 | ### Getting started
|
4 |
| -1. [Emoticon](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/1.%20Getting%20started/emoticon.py) |
5 |
| -2. [Fix the code: Seven Brothers](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/1.%20Getting%20started/seven_brothers.py) |
6 |
| -3. [Row, Row, Row Your Boat](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/1.%20Getting%20started/row_your_boat.py) |
7 |
| -4. [Minutes in a year](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/1.%20Getting%20started/minutes_year.py) |
8 |
| -5. [Print some code](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/1.%20Getting%20started/print_code.py) |
| 4 | +1. [Emoticon](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/1.%20Getting%20started/emoticon.py) |
| 5 | +2. [Fix the code: Seven Brothers](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/1.%20Getting%20started/seven_brothers.py) |
| 6 | +3. [Row, Row, Row Your Boat](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/1.%20Getting%20started/row_your_boat.py) |
| 7 | +4. [Minutes in a year](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/1.%20Getting%20started/minutes_year.py) |
| 8 | +5. [Print some code](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/1.%20Getting%20started/print_code.py) |
9 | 9 | ### Information from the user
|
10 |
| -1. [Name twice](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/2.%20Information%20from%20the%20user/name_twice.py) |
11 |
| -2. [Name and exclamation marks](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/2.%20Information%20from%20the%20user/name_exclamations.py) |
12 |
| -3. [Name and address](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/2.%20Information%20from%20the%20user/name_address.py) |
13 |
| -4. [Fix the code: Utterances](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/2.%20Information%20from%20the%20user/utterances.py) |
14 |
| -5. [Story](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/2.%20Information%20from%20the%20user/story.py) |
| 10 | +1. [Name twice](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/2.%20Information%20from%20the%20user/name_twice.py) |
| 11 | +2. [Name and exclamation marks](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/2.%20Information%20from%20the%20user/name_exclamations.py) |
| 12 | +3. [Name and address](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/2.%20Information%20from%20the%20user/name_address.py) |
| 13 | +4. [Fix the code: Utterances](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/2.%20Information%20from%20the%20user/utterances.py) |
| 14 | +5. [Story](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/2.%20Information%20from%20the%20user/story.py) |
15 | 15 | ### More about variables
|
16 |
| -1. [Extra space](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/3.%20More%20about%20variables/extra_space.py) |
17 |
| -2. [Arithmetics](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/3.%20More%20about%20variables/arithmetics.py) |
18 |
| -3. [Fix the code: Print a single line](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/3.%20More%20about%20variables/single_line.py) |
| 16 | +1. [Extra space](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/3.%20More%20about%20variables/extra_space.py) |
| 17 | +2. [Arithmetics](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/3.%20More%20about%20variables/arithmetics.py) |
| 18 | +3. [Fix the code: Print a single line](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/3.%20More%20about%20variables/single_line.py) |
19 | 19 | ### Arithmetic operations
|
20 |
| -1. [Times five](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/4.%20Arithmetic%20operations/times_five.py) |
21 |
| -2. [Name and age](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/4.%20Arithmetic%20operations/name_age.py) |
22 |
| -3. [Seconds in a day](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/4.%20Arithmetic%20operations/seconds_day.py) |
23 |
| -4. [Fix the code: Product](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/4.%20Arithmetic%20operations/product.py) |
24 |
| -5. [Sum and product](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/4.%20Arithmetic%20operations/sum_product.py) |
25 |
| -6. [Sum and mean](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/4.%20Arithmetic%20operations/sum_mean.py) |
26 |
| -7. [Food expenditure](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/4.%20Arithmetic%20operations/food_expenditure.py) |
27 |
| -8. [Students in groups](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/4.%20Arithmetic%20operations/student_group.py) |
| 20 | +1. [Times five](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/4.%20Arithmetic%20operations/times_five.py) |
| 21 | +2. [Name and age](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/4.%20Arithmetic%20operations/name_age.py) |
| 22 | +3. [Seconds in a day](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/4.%20Arithmetic%20operations/seconds_day.py) |
| 23 | +4. [Fix the code: Product](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/4.%20Arithmetic%20operations/product.py) |
| 24 | +5. [Sum and product](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/4.%20Arithmetic%20operations/sum_product.py) |
| 25 | +6. [Sum and mean](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/4.%20Arithmetic%20operations/sum_mean.py) |
| 26 | +7. [Food expenditure](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/4.%20Arithmetic%20operations/food_expenditure.py) |
| 27 | +8. [Students in groups](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/4.%20Arithmetic%20operations/student_group.py) |
28 | 28 | ### Conditional statements
|
29 |
| -1. [Orwell](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/5.%20Conditional%20statements/orwell.py) |
30 |
| -2. [Absolute value](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/5.%20Conditional%20statements/absolute_value.py) |
31 |
| -3. [Soup or no soup](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/5.%20Conditional%20statements/soup.py) |
32 |
| -4. [Order of magnitude](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/5.%20Conditional%20statements/order_magnitude.py) |
33 |
| -5. [Calculator](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/5.%20Conditional%20statements/calculator.py) |
34 |
| -6. [Temperatures](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/5.%20Conditional%20statements/temperatures.py) |
35 |
| -7. [Daily wages](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/5.%20Conditional%20statements/daily_wages.py) |
36 |
| -8. [Loyalty bonus](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/5.%20Conditional%20statements/loyalty_bonus.py) |
37 |
| -9. [What to wear tomorrow](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/5.%20Conditional%20statements/wear_tomorrow.py) |
38 |
| -10. [Solving a quadratic equation](https://github.com/antoniolopez7217/Python_Programming_MOOC/blob/main/part1/5.%20Conditional%20statements/quadratic_eq.py) |
| 29 | +1. [Orwell](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/5.%20Conditional%20statements/orwell.py) |
| 30 | +2. [Absolute value](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/5.%20Conditional%20statements/absolute_value.py) |
| 31 | +3. [Soup or no soup](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/5.%20Conditional%20statements/soup.py) |
| 32 | +4. [Order of magnitude](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/5.%20Conditional%20statements/order_magnitude.py) |
| 33 | +5. [Calculator](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/5.%20Conditional%20statements/calculator.py) |
| 34 | +6. [Temperatures](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/5.%20Conditional%20statements/temperatures.py) |
| 35 | +7. [Daily wages](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/5.%20Conditional%20statements/daily_wages.py) |
| 36 | +8. [Loyalty bonus](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/5.%20Conditional%20statements/loyalty_bonus.py) |
| 37 | +9. [What to wear tomorrow](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/5.%20Conditional%20statements/wear_tomorrow.py) |
| 38 | +10. [Solving a quadratic equation](https://github.com/antoniolopez7217/Python_Programming_MOOC_2023_Introduction/blob/main/part1/5.%20Conditional%20statements/quadratic_eq.py) |
39 | 39 |
|
40 | 40 | *All subjects are included as comments within the file of each exercise.*
|
0 commit comments