How can I remove vowels
Remove all the vowels in the message, unless the word starts with a vowel. Duplicate spaces should also be removed. They would also like to have the message in Uppercase letters and before each message they include the club name (with no vowels removed). The user should also be informed of the length of the message. Develop a program that reads in a normal description of a message and displays the corresponding Bulk SMS in UPPERCASE letters. The program must continue to accept adverts until the user indicates that they would like to terminate or exit the program. my attempt: Club_Name = " " message1 = " " while Club_Name != "#" or message1 != "#": Club_Name = input("Enter your group or club name[ENTER (#) TO EXIT]: ") message1 = input("Enter a message[ENTER (#) TO EXIT]: ") print() def BulkSMS(): newstring = " " for i in range(len(message1)): pos = message1.find(".") newstring = message1[:pos+1]+message1[pos+1:].strip() for i in message1: if i == "a" or i == "e" or i == "i" or i == "o" or i == "u": continue for i in message1: if i.startswith("a") or i.startswith("e") or i.startswith("i") or i.startswith("o") or i.startswith("u"): continue return newstring.upper().strip() print(BulkSMS())