Computer Science, asked by sauravkumar57401, 7 months ago

why is the error in the following code z,p=6

Answers

Answered by gaganadithyareddy9
4

Answer:

Hey! Is this in python...?

then....

z, p = 6 (ERROR)

You should pass two values because you took two variables... means z, p are two variables... and you should pass two values to them but you passed only one value that's why an error...

CORRECT: z, p = 6, 7

This is same as:

z = 6

p = 7

# Hope this helps!!

Similar questions