Computer Science, asked by abhisheksaxenasinggh, 3 months ago

Consider the following program and remove error and write output:
for x in range(1,20)
if(x%2=0)
continue
print(x)​

Answers

Answered by jkrishnan465
1

Answer:

1

2

3

4

.

.

.

20

Explanation:

bcz this code doesn't change the x values...

Similar questions