8. Which argument of print( ) would you set for : (i) changing the default separator (space) ? (ii) printing the following line in current line ?

i) to change the default separator, argument sep will be changed.

e.g. print(‘Aman’, ‘is’, ‘awesome’, sep=’@’) will print Aman@is@awesome

ii) to print the following line in the current line, set argument end=”

e.g.

print(‘Aman is’, end=”)

print(‘awesome’)

will print Aman is awesome