Skip to content

x = input() vow = ['a','e','i','o','u'] vs = [i for i in x if i in vow] vs = vs[::-1] c=0 for i in x: if i in vs: print(vs[c],end = '') c+=1 else: print(i,end ='')

Notifications You must be signed in to change notification settings

srikar2002/srikar-hackerank

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 

About

x = input() vow = ['a','e','i','o','u'] vs = [i for i in x if i in vow] vs = vs[::-1] c=0 for i in x: if i in vs: print(vs[c],end = '') c+=1 else: print(i,end ='')

Topics

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published