-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcar_price.py
113 lines (90 loc) · 4.25 KB
/
car_price.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
import datetime
# This program calculates a price for a used car based on the following:
# Original price, manufacturing year, kilometers driven, price category of the
# manufacturer (1 or 2), imported car or not
# Defining this moment in order to find out the current year:
now = datetime.datetime.now()
price_calculation = True
while price_calculation:
# Requesting the data for the calculation:
original_price = float(input("Original price: \n"))
production_year = int(input("Manufacturing year: \n"))
kilometers = int(input("Kilometers driven: \n"))
price_category = int(input("Manufacturer price category (1 or 2): \n"))
imported = input("Was the car imported (y/n) \n")
this_year = now.year
# Creating an empty variable for the new price:
new_price = 0
# Calculating the average amount of km/year:
km_per_year = int(kilometers / (this_year - production_year))
# Defining the car's age:
car_age = this_year - production_year
# Calculating the price for a price category 1 car:
if price_category == 1:
if km_per_year >= 30000:
if car_age <= 5:
# Calculating the car's value, if it's <= 5 years old.
# The value decreases 7 % during the first 5 years of age.
under_five_years_price = (1 - (0.07 / 5 * car_age)) * original_price
new_price = under_five_years_price
elif car_age > 5:
# Calculating the value of a car that's > 5 years old.
five_years_price = original_price * 0.93
new_price = original_price * (0.93 - ((car_age - 5) * 4 * 0.01))
if km_per_year < 30000:
if car_age <= 5:
under_five_years_price = (1 - (0.05 / 5 * car_age)) * original_price
new_price = under_five_years_price
elif car_age > 5:
five_years_price = original_price * 0.93
new_price = original_price * (0.93 - ((car_age - 5) * 3 * 0.01))
# Making sure the new price won't be less than 18 % of the original price:
if new_price < original_price * 0.82:
new_price = original_price * 0.82
else:
new_price = new_price
# Adding 24 % tax to the final price of an imported car:
if imported == "y":
new_price = new_price * 1.24
elif imported == "n":
new_price = new_price
# Printing the final price:
print(f"New price: {new_price} euros \n")
# Asking if the user wants to continue using the program
new_car = input("Do you want to calculate another price? (y/n) \n")
if new_car == "y":
price_calculation = True
else:
price_calculation = False
print("Thank you for using the program. \n")
# If the price category is 2 - checking the same as in the category 1 and calculating:
elif price_category == 2:
if km_per_year >= 30000:
if car_age <= 5:
under_five_years_price = (1 - (0.10 / 5 * car_age)) * original_price
new_price = under_five_years_price
elif car_age > 5:
five_years_price = original_price * 0.90
new_price = original_price * (0.93 - ((car_age - 5) * 10 * 0.01))
if km_per_year < 30000:
if car_age <= 5:
under_five_years_price = (1 - (0.8 / 5 * car_age)) * original_price
new_price = under_five_years_price
elif car_age > 5:
five_years_price = original_price * 0.92
new_price = original_price * (0.93 - ((car_age - 5) * 5 * 0.01))
if new_price < original_price * 0.88:
new_price = original_price * 0.88
else:
new_price = new_price
if imported == "k":
new_price = new_price * 1.24
elif imported == "e":
new_price = new_price
print(f"New price: {new_price} euros \n")
new_car = input("Do you want to calculate another price? (y/n) \n")
if new_car == "y":
price_calculation = True
else:
price_calculation = False
print("Thank you for using the program.\n")