#Python
x = 3
while x < 10:
print(x,end=" ")
x += 2
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#Python
x = 3
while x < 10:
print(x,end=" ")
x += 2