What will the following line in a python script do?
print "Hello " + name + " from Python!"
a. It will output "Hello from Python!"
b. It will error as name is an undefined variable.
c. It will output "Hello user from Python!" where user is your username.
d. It will output "Hello name from Python!"



Answer :

Other Questions