diff options
Diffstat (limited to 'python/code/3/5.py')
-rw-r--r-- | python/code/3/5.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/python/code/3/5.py b/python/code/3/5.py deleted file mode 100644 index 7db13a0..0000000 --- a/python/code/3/5.py +++ /dev/null @@ -1,5 +0,0 @@ -text = input('Enter a line of text: ') -vowels = set('aeiouAEIOU') -ctext = ''.join(c for c in text if c not in vowels) -print('Given text with all vowels removed:', ctext) - |