Answer the question
In order to leave comments, you need to log in
How to implement inexact search?
data1 = [
{
"date": "29.11.2021 08:30",
"judge": " Петро І.І.",
"forma": "Кс",
"number": "304/1296/15-к",
"involved": "Об: Вільчинський І.Д. ",
"description": "Зловживання службовим становищем"
},
{
"date": "29.11.2021 08:50",
"judge": " Василь І.І.",
"forma": "Кримінальне судочинство",
"number": "304/418/18",
"involved": "Об: Булеца С. В.",
"description": "Привласнення, розтрата майна або заволодіння"
}
]
for i in data1:
if i['involved'] == 'Булеца':
print(i['date'], i['judge'], i['forma'], i['number'], i['involved'], i['description'], sep='\n')
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question