Files
flashcards-thingy/main.py
T

12 lines
174 B
Python
Raw Normal View History

2026-09-09 13:56:18 +00:00
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"])