Skip to content

Instantly share code, notes, and snippets.

@Ventsislav-Yordanov
Last active February 19, 2019 18:08
Show Gist options
  • Save Ventsislav-Yordanov/41255d9230a7d285f2164002b1ea56f9 to your computer and use it in GitHub Desktop.
Save Ventsislav-Yordanov/41255d9230a7d285f2164002b1ea56f9 to your computer and use it in GitHub Desktop.
def capitalize_sentences(sentences):
for index, item in enumerate(sentences):
sentences[index] = item.capitalize()
sentences = ["this is test sentence", "I love Python", "positive thinking is nice!"]
print("Before calling the function:", sentences)
capitalize_sentences(sentences)
print("After calling the function:", sentences)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment