print("a",8,sep = '') #Output: a8
>>> print("a","b","c") a b c >>> print("a","b","c",sep="") abc
x = 10 print ('The number of mangoes I have are "%d"' %x )