write a python program to display 15-25 no. using for loop
Answers
Answered by
0
Answer:
for x in range(15,26):
print (x)
output will be :
15
16
17
18
19
20
21
22
23
24
25
Similar questions