Question: The following code gives the error message shown below. Fix the code. >>> a = 3 >>> b = 4 >>> c = d *
The following code gives the error message shown below. Fix the code.
>>> a = 3
>>> b = 4
>>> c = d * a
The error was:d
Name not found globally.
A local or global name could not be found. You need
to define the function or variable before you try
to use it in any way.
Step by Step Solution
3.40 Rating (156 Votes )
There are 3 Steps involved in it
The problem is that the variable d is not defined Therefore a... View full answer
Get step-by-step solutions from verified subject matter experts
