#Chinmay Kotkar #24-06-2022 str = input("Input: ") vowels=('A','E','I','O','U','a','e','i','o','u') for char in str: if char in vowels: str = str.replace(char,"") print("Output: ",str)