Can you tell me how to resolve the string problems in python beginner please ... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can you tell me how to resolve the string problems in python beginner please ...

18th Mar 2021, 5:18 PM
Shenal Gunawardhana
Shenal Gunawardhana - avatar
10 Answers
+ 2
Try this code print("1.\n2.\n3.\n4.\n5.\n6.\n7.\n8.\n9.\n")
19th Mar 2021, 6:28 AM
Steve Nova
Steve Nova - avatar
0
Click on share and then copy the link so we can help.
18th Mar 2021, 8:11 PM
Steve Nova
Steve Nova - avatar
0
This is the question. So I want to how to code this questions please give me the support to achieve my python beginners course
19th Mar 2021, 12:44 AM
Shenal Gunawardhana
Shenal Gunawardhana - avatar
0
Please, show us your attempt
19th Mar 2021, 4:16 AM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
0
Thank you Steve it's worck
19th Mar 2021, 7:16 AM
Shenal Gunawardhana
Shenal Gunawardhana - avatar
0
Cool 👌✌️🤞
19th Mar 2021, 7:19 AM
Steve Nova
Steve Nova - avatar
0
i = 1 while i <= 9: b = str(i) + str(".") print(b) i = i + 1
9th Jul 2021, 4:47 AM
Dhaval Kanjariya
Dhaval Kanjariya - avatar
- 1
Hi! What the string problems you mean? Please, be more understanding 😒
18th Mar 2021, 5:49 PM
Yaroslav Vernigora
Yaroslav Vernigora - avatar
- 1
You need to make a program for a leaderboard. The program needs to output the numbers 1 to 9, each on a separate line, followed by a dot:
19th Mar 2021, 12:43 AM
Shenal Gunawardhana
Shenal Gunawardhana - avatar
- 1
Alternative try this i = 1 while i <= 9: b = str(i) + str(".") print(b) i = i + 1
19th Mar 2021, 6:30 AM
Steve Nova
Steve Nova - avatar