how to print 2 string without space in python code example
Example: how to print without space in python 3
>>> print("a","b","c")
a b c
>>> print("a","b","c",sep="")
abc
>>> print("a","b","c")
a b c
>>> print("a","b","c",sep="")
abc