Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.3k views
in Technique[技术] by (71.8m points)

python 3.x - What is the correct way to convert string into UTF-8 encoded URL

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...