
ManaTrick
May 28, 2025 at 01:30 PM
Here are the correct answers to the previous quizzes:
*What is the result of this code?*
a = 5
a += 3
print(a)
*Answer: a) 8*
a += 3 is shorthand for a = a + 3.
*What will this return?*
print(3 > 2 and 2 > 5)
*Answer: b) False*
3 > 2 is True, 2 > 5 is False → True and False = False
*React with ❤️ if you're ready for the next topic*
*ManaTrick* : https://whatsapp.com/channel/0029VaLxL5o2v1IsQgjEKC2H
❤️
2