find out error in the following fragments a , b , c = 2, 8, 9 print a b c
Answers
Answered by
1
Answer:
Use comma in the print statement instead writing them separate
Write as print(a, b, c)
Then the code will work
Explanation:
HOPE IT HELPS YOU
DO FOLLOW FOR MORE ANSWERS
MARK AS BRAINLIEST
Answered by
2
Question:-
Find the errors in the following code.
Solution:-
Given code,
a , b , c = 2, 8, 9
print a b c
In this code, the second line contains error. After correction, the code will be,
a , b , c = 2, 8, 9
print (a, b, c)
Similar questions