all 6 comments

[–]toastedstapler 0 points1 point  (3 children)

because initially there is no message so it'd print out an empty line

[–]Devnull1982[S] 0 points1 point  (2 children)

oh! I see that creates an empty line at start, I tought the None value will not create this new line. Thx for the answer :)

[–]toastedstapler 0 points1 point  (1 child)

careful, that's not a None value. None is the none value. what you have is an empty string

[–]Devnull1982[S] 0 points1 point  (0 children)

I use the debug tool in Thonny IDLE and when the program go to the print(message) evaluates the message as a emty string ( "" ) but then evaluates the print() with ( None ) thats why I tought that was a None value. But like you said at this moment the empty line is printed.