laflame

Aryan Shahane, Sugamay Gakhar, Jishnu Ganisetti

def remove_vowels(input_string): vowels = "aeiouAEIOU" return ''.join(char for char in input_string if char not in vowels)

input_string = input("Enter a string: ") result = remove_vowels(input_string) print("String with vowels removed:", result)

Built With

Share this project:

Updates