diff --git a/twitter.py b/twitter.py new file mode 100644 index 0000000..54b3c51 --- /dev/null +++ b/twitter.py @@ -0,0 +1,13 @@ +def twitter(string): + string = string.replace('a', "") + string = string.replace('e', "") + string = string.replace('i', "") + string = string.replace('o', "") + string = string.replace('u', "") + return string + +def main(): + string = input("Write your string please: ") + print(twitter(string)) + +main()