Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.4k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...