find out error in the following fragments a , b , c = 2, 8, 9 print a b c
Answers
Answered by
2
Question:-
Find the errors in the following code.
Solution:-
Given code, (python)
a , b , c = 2, 8, 9
print a b c
The second line contains the error. After correction,
a , b , c = 2, 8, 9
print(a, b, c)
Similar questions