Computer Science, asked by vibhavpol7604, 7 months ago

Find the error in the following code?

a, b, c=2, 8, 4

print(a, b, c)

c, b, a = a, b, c

print(a; b; c)​

Answers

Answered by akanshaagrwal23
1

Explanation:

In Python, the most important data structures are List, Tuple, and Dictionary. So you should know how they work and when to use them. That’s why we brought these 30 Python programming questions on List, Tuple, and Dictionary in this blog post.

Answered by yadavsatyam6384
4

Answer:

Print(a,b,c)

Like itfollow mr

Similar questions