Remove Vowels from the Stirng

PHOTO EMBED

Sat Dec 24 2022 01:46:37 GMT+0000 (Coordinated Universal Time)

Saved by @sukumar #python

string=input('enter string:')
new=''
lis=['a','e','i','o','u']
for i in string:
    if i.lower() in lis:
        i='' # continue
    new+=i
print('The string after removing vowels is',new)
content_copyCOPY