fork download
  1. def vowel(test_str, K):
  2. vowels = 'AEIOUaeiou'
  3. for ele in vowels:
  4. test_str = test_str.replace(ele, K)
  5.  
  6. return test_str
  7. input_str = input()
  8. K = "7"
  9. print(vowel(input_str, K))
Success #stdin #stdout 0.02s 9088KB
stdin
Program
stdout
Pr7gr7m