While using Python (via cmd) and writing this inside:
>>> import random
>>> print("hello"),print("world"),print(random.randint(5,10))
the output I'm getting is:
hello
world
8
(None, None, None)
Now I'm not sure why the interpreter returns the tuple of None's, but not a single None.