5 lines
161 B
Python
5 lines
161 B
Python
text = """Select Everything in the 3 quotes, and paste the exported contents"""
|
|
|
|
for l in text.split("\n"):
|
|
a=l.split(" ")
|
|
print(a[1] + " " + a[0]) |