Python: carriage return
Self-tutoring about Python: the tutor mentions a curiosity. Experimenting with the print function on the Python interpreter, I noticed that print(‘hello\rain’) will yield ainlo The reason, I believe, is that \r is interpreted as the carriage return. As such, it …