Computer Science, asked by ishikaswain61, 8 months ago

What is the error inn following python program:

print(“Name is “, name)

Answers

Answered by ayushnirgude
1

Answer:

print ('name)

Explanation:

it can't expect name again a sit has (,) so remove (,)

Answered by SASHANKSAHIL
2

Answer:

The above answer is wrong

The reason is:

The error name is NameError , because the the 'name' is not defined means no value is assigned to name identifier, so that's why the error occurs if you assigned the value of name you won't get any errors

Hope you may get it

Mark as brainliest

Thank You...

Similar questions