Question: Consider the code written in Python below: a = 1 0 b = 1 2 for i in range ( b ) : if i

Consider the code written in Python below: a =10
b =12
for i in range(b):
if i%3 :
a = a +3
elif i%2 :
a = a +2
else :
a = a +1
print(a) The value of the variable "a" displayed is

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!