print("a",8,sep = '')
#Output: a8
>>> print("a","b","c")
a b c
>>> print("a","b","c",sep="")
abc
print('G','F', sep='', end='')
print('G')
#
provides new line after printing the year
print('09','12','2016', sep='-', end='
')
print('prtk','agarwal', sep='', end='@')
print('geeksforgeeks')
Output:
GFG
09-12-2016
prtkagarwal@geeksforgeeks
x = 10
print ('The number of mangoes I have are "%d"' %x )