Created
May 5, 2020 20:35
-
-
Save raeq/1ca91d11d805d97a9262d2a4b438d11c to your computer and use it in GitHub Desktop.
List Comprehension
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
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