Skip to content

Instantly share code, notes, and snippets.

@raeq
Created May 5, 2020 20:35
Show Gist options
  • Save raeq/1ca91d11d805d97a9262d2a4b438d11c to your computer and use it in GitHub Desktop.
Save raeq/1ca91d11d805d97a9262d2a4b438d11c to your computer and use it in GitHub Desktop.
List Comprehension
mytext:str = "Hello, World!"
characters:list = [current_letter.title() for current_letter in mytext if current_letter.isalpha()]
my_new_text:str = "".join(characters)
print(my_new_text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment