Inspiration
What it does
How we built it
Challenges we ran into
Accomplishments that we're proud of
What we learned
What's next for s4q2_swaramulagari
def remove_vowels(old_string): vowels = "aeiouAEIOU" return "".join(char for char in old_string if char not in vowels)
old_string = "Hi Everyone!" new_string = remove_vowels(old_string) print(new_string)
Log in or sign up for Devpost to join the conversation.