0 votes
in Python by
Read the below program code carefully,

word = "madanswer"   

print(*word)    

What will be the output of this program?

a) madanswer

b) m a d a n s w e r

c) *word

d) SyntaxError: invalid syntax

1 Answer

0 votes
by

b) m a d a n s w e r

...