Computer Science, asked by muskansolanki857, 3 months ago

1) Find the errors
and rewrite
a, b, c = 2,8,9
Print (a,b,c)
Print (a; b; c)
Print ("x = ',x)​

Answers

Answered by soumik860
1

Answer:

a, b, c = 2,8,9

print(a,b,c)

print(a, b, c)

print("x = ", x)

Similar questions