Python - Operators and Expression Evaluation
What is the output of this code?
count = 3
count += 4
count -= 2
print(count)What is the output of this code?
count = 3
count += 4
count -= 2
print(count)count += 4count -= 215+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions