Add new file

main
Ferexio 2022-08-01 06:40:30 +00:00
parent 5a76c717a4
commit 7a2210937f
1 changed files with 13 additions and 0 deletions

13
twitter.py Normal file
View File

@ -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()