Update main.py

This commit is contained in:
2026-09-09 15:59:01 +00:00
parent 7851e9fc43
commit 1cb8855412
+4 -11
View File
@@ -1,12 +1,5 @@
list = [
{
"term": "the term",
"def": "the def"
}
]
text = """Select Everything in the 3 quotes, and paste the exported contents"""
for obj in list:
print(obj["term"]+": "+obj["def"])
for obj in list:
print(obj["def"]+": "+obj["term"])
for l in text.split("\n"):
a=l.split(" ")
print(a[1] + " " + a[0])