-
Notifications
You must be signed in to change notification settings - Fork 0
/
Homework 10.py
126 lines (66 loc) · 3.93 KB
/
Homework 10.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
114
115
116
117
118
119
120
121
122
123
124
125
126
# დაწერეთ პითნის პროგრამა, რომელიც გააგზავნის მოთხოვნას requests-მოდულის გამოყენებით "https://fakestoreapi.com/products" მისამართზე,
# შეამოწმებს სტატუს და გადაიყვანს მიღებულ სიას, პითონის ლისტად და შეასრულეთ შემდეგი მოქმედებები:
# ა) შექმენით პროდუქტის ფასების სია და გამოიტანეთ როგორც მაქსიმალური ასევე მინიმალური და სასშუალო ფასები
# import requests
# def get_product_prices():
# url = "https://fakestoreapi.com/products"
# response = requests.get(url)
# if response.status_code == 200:
# products = response.json()
# prices = [product['price'] for product in products]
# max_price = max(prices)
# min_price = min(prices)
# avg_price = sum(prices) / len(prices)
# print(f"Maximum price: ${max_price}")
# print(f"Minimum price: ${min_price}")
# print(f"Average price: ${avg_price:.2f}")
# else:
# print("Failed to fetch data")
# get_product_prices()
# ბ) შექმენით კატეგორიების სია (დუბლიკაციების გარეშე) და დაასორტირეთ
# import requests
# def get_unique_sorted_categories():
# url = "https://fakestoreapi.com/products"
# response = requests.get(url)
# if response.status_code == 200:
# products = response.json()
# categories = set()
# for product in products:
# categories.add(product['category'])
# sorted_categories = sorted(categories)
# print("Sorted categories:")
# for category in sorted_categories:
# print(category)
# else:
# print("Failed to data")
# get_unique_sorted_categories()
# გ) შექმენით სია რომელშიც გექნებად პროდუქტის აღწერა (title) და id. დაასორტირეთ შედეგი title-ის მიხედვით
# import requests
# def get_sorted_product_description_and_id():
# url = "https://fakestoreapi.com/products"
# response = requests.get(url)
# if response.status_code == 200:
# products = response.json()
# products_info = [{'title': product['title'], 'id': product['id']} for product in products]
# sorted_products_info = sorted(products_info, key=lambda x: x['title'])
# print("Sorted product descriptions and IDs:")
# for product in sorted_products_info:
# print(f"Title: {product['title']}, ID: {product['id']}")
# else:
# print("Failed to fetch data")
# get_sorted_product_description_and_id()
# დ) შემქენით რეიტინგების სია რომელიც იქნება დასორტირებული ("rate"-ის მიხედვით) ზრდადობით
import requests
def get_sorted_ratings():
url = "https://fakestoreapi.com/products"
response = requests.get(url)
if response.status_code == 200:
products = response.json()
ratings = [product['rating'] for product in products]
sorted_ratings = sorted(ratings)
print("Sorted ratings in ascending order:")
for rating in sorted_ratings:
print(rating)
else:
print("Failed to fetch data")
get_sorted_ratings()