79641302

Date: 2025-05-27 22:57:20
Score: 1.5
Natty:
Report link

Maybe not an answer to your question, but a suggestion: Python often has built in tools doing the work for you. This question looks like an exercise for split():

sentence = "Humpty Dumpty sat on a wall" #input("Please type in a sentence: ")
print([word[0] for word in sentence.split()])
Reasons:
  • Blacklisted phrase (1): not an answer
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: kaksi