0
Leaderboard Puzzle in beginners python
I don't find anything wrong in this code. Can anyone tell me why the app is asking me to fix the bug when Iam getting the exact same output as desired. L= ('1. \n2. \n3. \n4. \n5. \n6. \n7. \n8. \n9.') print (L)
3 Answers
+ 5
Remove all extra spaces after "."
+ 2
L="1.\n2.\n3.\n4.\n5.\n6.\n7.\n8.\n9."
print(L)
There should be no space after dot(.)
+ 1
Thanks guys đ