Recieverphno = input("Please enter the phone number of the person you want to send the
whatsapp message to: ")
Text = input('Please enter the text you want this person to recieve: ')
n = input('Please enter the number of times you want to send the person: ')
Text.replace(" ", "%20")
Text.replace("?", "%3F")
Text.replace("!", "%21")
Text.replace(",", "%2C")
WhatsappAPIURL = str('https://wa.me/'+Recieverphno+'?text='+Text)
print(WhatsappAPIURL)
I want to replace the string and encode it in UTF-8 format
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…