Computer Science, asked by mahmoodmustafa1453, 4 months ago

write a program to print 17 natural number using a for()loop​

Answers

Answered by harshvirsing55
1

Answer:

PROGRAM IN PYTHON LANGUAGE :

=================================================================

for i in range(1,18):

 print(i)

=================================================================

Output:-

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

=================================================================

Similar questions