I\'m testing out repl.it (running Python 3.5.1) and I noticed that after every line of input into the console, the console replies with None. I\'m not using any fan
None
None is the default return value of statements that do not have a return value. Some interpreter shells display it, some don't.
It's perfectly normal, don't worry about it.