I'm having trouble copy-pasting code in Python. Say I have the following code I want to paste into a Python interpreter:
string_one = "Help"
string_two = "Me"
Locally, running 3.8.5 on a Mac OSX 10.15.7, if I paste that code, I get SyntaxError: multiple statements found while compiling a single statement.
However, if I ssh into another machine, open up Python (3.7.4), and paste those two lines, I get no error. Also, when I paste those two lines into a Python 2.7.16 shell, I get no error. What could possibly be the problem here?

