Matching the outputs

Report a typo

Match the expressions in the left column with their outputs in the right one.

Match the items from left and right columns
print('I', 'am', 'the', 'test')
print('I', 'am', 'the', sep='', end='test')
print('I', ' ', 'am', ' ', 'the', 'test', sep='_', end='')
print('I am the', 'test', sep='!')
print(*['I', 'am', 'the', 'test'], end='!')
'Iamthetest'
'I am the test'
'I am the!test'
'I am the test!'
'I_ _am_ _the_test'
___

Create a free account to access the full topic