Files

5 lines
161 B
Python
Raw Permalink Normal View History

2026-09-09 15:59:01 +00:00
text = """Select Everything in the 3 quotes, and paste the exported contents"""
2026-09-09 13:56:18 +00:00
2026-09-09 15:59:01 +00:00
for l in text.split("\n"):
a=l.split(" ")
print(a[1] + " " + a[0])