Select all options that print.

Questions & AnswersCategory: PythonSelect all options that print.
Geek Boy Staff asked 2 years ago

Select all options that print.

hello-how-are-you

a. print(‘hello’,‘how’,‘are’,‘you’)
b. print(‘hello’,‘how’,‘are’,‘you’ + ‘-‘ * 4)
c. print(‘hello-‘ + ‘how-are-you’)
d. print(‘hello’ + ‘-‘ + ‘how’ + ‘-‘ + ‘are’ + ‘you’)