0
Can you tell me how to resolve the string problems in python beginner please ...
10 Answers
+ 2
Try this code
print("1.\n2.\n3.\n4.\n5.\n6.\n7.\n8.\n9.\n")
0
Click on share and then copy the link so we can help.
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
0
Please, show us your attempt
0
Thank you Steve it's worck
0
Cool đâïžđ€
0
i = 1
while i <= 9:
b = str(i) + str(".")
print(b)
i = i + 1
- 1
Hi! What the string problems you mean? Please, be more understanding đ
- 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:
- 1
Alternative try this
i = 1
while i <= 9:
b = str(i) + str(".")
print(b)
i = i + 1