Advertisement
Alx09

problema 1

Apr 1st, 2022
914
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.19 KB | None | 0 0
  1. def elimnareVocale(text):
  2.     vowels = ('a', 'e', 'i', 'o', 'u', 'A', 'E', 'I','O','U');
  3.     for x in vowels:
  4.         text = text.replace(x,"");
  5. text = "";
  6. text = input("Enter any string: ")
  7.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement