python print without spaces code example
Example 1: python print without space
print("a",8,sep = '')
#Output: a8
Example 2: how to print without space in python 3
>>> print("a","b","c")
a b c
>>> print("a","b","c",sep="")
abc
print("a",8,sep = '')
#Output: a8
>>> print("a","b","c")
a b c
>>> print("a","b","c",sep="")
abc