Computer Science, asked by harsimar5544, 2 months ago

Find the Output of the following Python code
num= 1
while num< 10:
print(num)
num= num+ 3

Answers

Answered by indrajsingh115
2

Answer:

num= 1

while num< 10:

print(num)

num= num+ 3

Answered by assthha161
1

This output is produced:

1

4

7

Similar questions