Answer the question
In order to leave comments, you need to log in
How to output a random element of a JSON array using Python?
I've been struggling with one task for an hour already, googled in Russian, googled in English, read the documentation.
You need to go through the json object of the form:
{
"items": [{
"name": "Первый",
"ingredients": "Первое",
"cookWay": "Первые"
}, {
"name": "Второй",
"ingredients": "Второе",
"cookWay": "Вторые"
}, {
"name": "Третий",
"ingredients": "Третье",
"cookWay": "Третьи"
}]
}
recipes = open('items.json', 'r')
parsed_recipes = json.load(recipes)
def rand_item():
for element in parsed_recipes["items"]:
name = element['name']
ingredients = element['ingredients']
howto = element['cookWay']
ready_recipe = name + ingredients + howto
ready = random.choice(ready_recipe)
return ready
Answer the question
In order to leave comments, you need to log in
Obviously, you first need to take a random element, and then get the values \u200b\u200bof its fields
def rand_item():
random_recipe = random.choice(parsed_recipes["items"])
name = random_recipe['name']
ingredients = random_recipe['ingredients']
howto = random_recipe['cookWay']
ready_recipe = name + ingredients + howto
return ready_recipe
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question