Computer Science, asked by mikkisingh8may, 5 months ago

X = 5
while (x<3o):
print (x)
x = x +5. in python​

Answers

Answered by rushilk7
0

Answer:

x = 5

while(x <30)

print(x)

x+=5

Similar questions