-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanimals.py
More file actions
25 lines (23 loc) · 1.78 KB
/
Copy pathanimals.py
File metadata and controls
25 lines (23 loc) · 1.78 KB
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
# animals.py
# animal_scores = {
# "В горах": {"animal": "Медведь", "image": "images/pexels-rasmussvinding-35435.jpg"},
# "У моря": {"animal": "Дельфин", "image": "images/pexels-pixabay-64219.jpg"},
# "В лесу": {"animal": "Дикобраз", "image": "images/pexels-anca-silvia-orosz-3360787-5030891.jpg"},
# "Фрукты": {"animal": "Попугай", "image": "images/pexels-couleur-2317904.jpg"},
# "Мясо": {"animal": "Лев", "image": "images/pexels-alexasfotos-2220336.jpg"},
# "Зелень": {"animal": "Коза", "image": "images/pexels-pixabay-86594.jpg"}
# }
animal_scores = {
"В горах": {"animal": "Медведь", "image": "images/pexels-rasmussvinding-35435.jpg"},
"У моря": {"animal": "Дельфин", "image": "images/pexels-pixabay-64219.jpg"},
"В лесу": {"animal": "Дикобраз", "image": "images/pexels-anca-silvia-orosz-3360787-5030891.jpg"},
"Фрукты": {"animal": "Попугай", "image": "images/pexels-couleur-2317904.jpg"},
"Мясо": {"animal": "Лев", "image": "images/pexels-alexasfotos-2220336.jpg"},
"Зелень": {"animal": "Коза", "image": "images/pexels-pixabay-86594.jpg"},
"В пустыне": {"animal": "Верблюд", "image": "images/pexels-shukran-1539610.jpg"},
"На равнине": {"animal": "Зебра", "image": "images/pexels-jvdm-1524628.jpg"},
"В озере": {"animal": "Утка", "image": "images/pexels-pixabay-209035.jpg"},
"На ферме": {"animal": "Корова", "image": "images/pexels-pixabay-51311.jpg"},
"В джунглях": {"animal": "Тигр", "image": "images/pexels-george-desipris-792381.jpg"},
"В океане": {"animal": "Кит", "image": "images/pexels-silvana-palacios-2013790-3635870.jpg"},
}