Files
blanks/python/dict.py

11 lines
264 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Работа со словарем
# Поиск по значению
if value in structure_db.values():
# Обход словаря
for key,val in structure_db.items():
# Полчить первый ключ словаря
list(objJSON.keys())[0]