how to print a range of number with out space 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