diff options
| author | Syndamia <kami02882@gmail.com> | 2019-07-14 18:24:40 +0300 |
|---|---|---|
| committer | Syndamia <kami02882@gmail.com> | 2019-07-14 18:24:40 +0300 |
| commit | 65edf7296baf48aad1b4e0c09b57f1a7f48791a8 (patch) | |
| tree | 0c163496769d66363a4907cab3e72f42e5030c75 /Python/Beginner training/001 GoSkiing.py | |
| parent | a0addea2b7bbdac244420ec917c0f3c14c4c8831 (diff) | |
| download | Self-learning-65edf7296baf48aad1b4e0c09b57f1a7f48791a8.tar Self-learning-65edf7296baf48aad1b4e0c09b57f1a7f48791a8.tar.gz Self-learning-65edf7296baf48aad1b4e0c09b57f1a7f48791a8.zip | |
Combined exam exercises files into one file, added a file for OOP exercises
Diffstat (limited to 'Python/Beginner training/001 GoSkiing.py')
| -rw-r--r-- | Python/Beginner training/001 GoSkiing.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Python/Beginner training/001 GoSkiing.py b/Python/Beginner training/001 GoSkiing.py deleted file mode 100644 index 28f6f33..0000000 --- a/Python/Beginner training/001 GoSkiing.py +++ /dev/null @@ -1,12 +0,0 @@ -import sys -import os - -skier_n = int(input('Type number of skiers: ')) -jacket_n_per_person = int(input('Type number of jackets per person: ')) -helmet_n_per_person = int(input('Type number of helmets per person: ')) -shoe_set_n_per_person = int(input('Type number of shoes per person: ')) - -total_per_person = (jacket_n_per_person * 120) + (helmet_n_per_person * 75) + (shoe_set_n_per_person * 299.9) -total_price = total_per_person * skier_n - -print('Total price for all skiers: ', round(total_price + total_price * 0.2, 2))
\ No newline at end of file |
