made main.py

This commit is contained in:
2026-09-09 13:56:18 +00:00
commit 7851e9fc43
+12
View File
@@ -0,0 +1,12 @@
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"])