- 1
Can you help me how can I solve this cod
You need to make a program for leaderboard . The program needs to output The numbers 1 to 9 , each on a separate line, follwed by a dot: 1. 2. 3. ...
1 Antwort
0
Python
for i in range(1, 9 + 1):
print(str(i) + ".")