230k views
4 votes
4.3 Code practice question 2 project stem


User Shub
by
7.0k points

1 Answer

5 votes

Answer:

i = 3

while i <= 21:

if i % 3 == 0:

print(i)

i += 1

User Itzg
by
6.8k points