CBSE Class 11 Computer Science Question 94 of 106

Python Fundamentals — Question 3

Back to all questions
3
Question

Question 3

Write a program that generates the following output :
5
10
9
Assign value 5 to a variable using assignment operator (=) Multiply it with 2 to generate 10 and subtract 1 to generate 9.

Solution
a = 5
print(a)
a = a * 2
print(a)
a = a - 1
print(a)
Output
5
10
9
Answer