python3 print without space between variables code example
Example 1: how to print without space in python 3
>>> print("a","b","c")
a b c
>>> print("a","b","c",sep="")
abc
Example 2: can variables have spaces python
No.
Use underscores instead.