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

Related questions

0 votes
asked Sep 25, 2021 in Python by john ganales
0 votes
asked Sep 25, 2021 in Python by john ganales
...