0
The program needs to output the numbers 1 to 9, each on a separate line, followed by a dot: 1. 2. 3. Using \n or """
2 Answers
0
Nibir Nath
show us your code attempt or do thisđđđ
use a for loop from 1 to 9 ,
print the number and dot
print new line
0
for i in range(1,10):
print(str(i)+".")