Match the expressions in the left column with their outputs in the right one.
Sep and end arguments of print
Matching the outputs
Report a typo
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'
___
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.
Create a free account to access the full topic
By continuing, you agree to the JetBrains Academy Terms of Service as well as Hyperskill Terms of Service and Privacy Policy.