Last active
February 19, 2019 18:08
-
-
Save Ventsislav-Yordanov/41255d9230a7d285f2164002b1ea56f9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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