Computer Science, asked by aniketat9d, 8 hours ago

Write down step by step execution of the following Python program,
(Remembering, Applying)
a,b = 5,15
for i in range(a,b,1):
if(i == 10):
break
print(i)​

Answers

Answered by ranaantriksh96
0

Answer:

In Python, an assignment statement can make two variables equal, but ... 1 2 3. a = 5 b = a # After executing this line, a and b are now equal a = 3 ... Recall that the for loop processes each item in a list.

marks as brainliest

Similar questions