Can you help me how can I solve this cod | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 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. ...

15th Jun 2021, 3:19 PM
Reham Bader
Reham Bader - avatar
1 Answer
0
Python for i in range(1, 9 + 1): print(str(i) + ".")
15th Jun 2021, 3:26 PM
SammE
SammE - avatar