0 votes
in Python by

Read the below program code carefully, 

_ = '1 2 3 4 5 6'  

print(_)  

What will be the output of this program?

a) SyntaxError: EOL while scanning string literal

b) SyntaxError: invalid syntax

c) NameError: name '_' is not defined

d) 1 2 3 4 5 6

...