I want this same print statement to give me these variables in separate statements:
x = 22.4
y = 23.4
print(y,\n x)
but Python doesn't seem to think it's obvious.
I have tried the r/n
and I have also tried printing out my variables with separate print statements, but that is not what I want.