What happens when the following code is executed:: xlabel("First label") xlabel("Second label")
Answers
Answered by
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
10
Answer:
The label of x-axis is “First label” and the label of y-axis is “Second label”
Explanation:
Similar questions