Reproducible code:
Python running result:
>>> print("Hello!", end='')
Hello!>>>
>>>
>>>
We will find that after pressing Enter several times, the previous output text will not stay in front of the '>>> ',
but in Bpython, do the same thing:
>>> print("Hello!", end='')
>>>
>>>
Hello!>>>
We wil find that the previous output will always stay in front of '>>> ', although we can use print() for printing a newline clear the leftover 'hello'.