In IDLE, say i want to write the following in TWO lines:
x = 3 print x**5
but when i type x = 3 and press enter, it executes the assignment. H
x = 3; print x ** 5
should help, but it doesnt matter that its executed the way it is in IDLE.