Files
flashcards-thingy/main.py
T
2026-09-09 13:56:18 +00:00

12 lines
174 B
Python

list = [
{
"term": "the term",
"def": "the def"
}
]
for obj in list:
print(obj["term"]+": "+obj["def"])
for obj in list:
print(obj["def"]+": "+obj["term"])