diff --git a/main.py b/main.py index 6b95615..47abe71 100644 --- a/main.py +++ b/main.py @@ -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"]) \ No newline at end of file +for l in text.split("\n"): + a=l.split(" ") + print(a[1] + " " + a[0]) \ No newline at end of file