In python 3, we can easily print on the same line using the following script. I use this to understand the progress of my loop (how much time will be left). However, in jupy
Prefix a \r and add an argument end="" to print, like so
\r
end=""
print("\rThis will be printed on the same line", end="")
This works in the Jupyter notebook in Google Colab.