The program needs to output the numbers 1 to 9, each on a separate line, followed dot | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

The program needs to output the numbers 1 to 9, each on a separate line, followed dot

9th May 2022, 4:15 AM
KADAPA SAI KRISHNA
1 Answer
+ 1
Perhaps a bit easier to see: for i in range(1,10): print(str(i) + ‘.’)
9th May 2022, 7:38 AM
Kamil Hamid
Kamil Hamid - avatar