Computer Science, asked by Anoopkumar7393, 10 months ago

What happens when the following code is executed:: xlabel("First label") xlabel("Second label")

Answers

Answered by BushrajavediqbalKhan
15

What happens when the following code is executed:: xlabel("First label") xlabel("Second label")

Explanation:

 File "<string>", line 1, in <module>

 File "/usr/lib/python2.7/py_compile.py", line 117, in compile

   raise py_exc

py_compile.PyCompileError:   File "prog.py", line 1

   What happens when the following code is executed:: xlabel("First label")  xlabel("Second label")

              ^

Syntax Error: invalid syntax

Answered by venkatsaidamera30
10

Answer:

The label of x-axis is “First label” and the label of y-axis is “Second label”

Explanation:

Similar questions