如何使用 Python 在网站 link 中使用变量?
How can I use a variable in website link using Python?
我想向号码发送 WhatsApp 消息,而不使用 Python 添加联系人。
webbrowser.open('https://api.WhatsApp.com/send?phone=number')
我在我的程序中使用了上层代码,但我想问一下,我正在制作一个 TkInter 项目,在我的程序中 cph
是 phone 数字变量,我也调用了 cph.get()
函数,但如何在 link.
中使用此 cph
变量
您可以在打开前定义您的link。
link = "https://api.WhatsApp.com/send?phone=" + variable
webbrowser.open(link)
我想向号码发送 WhatsApp 消息,而不使用 Python 添加联系人。
webbrowser.open('https://api.WhatsApp.com/send?phone=number')
我在我的程序中使用了上层代码,但我想问一下,我正在制作一个 TkInter 项目,在我的程序中 cph
是 phone 数字变量,我也调用了 cph.get()
函数,但如何在 link.
cph
变量
您可以在打开前定义您的link。
link = "https://api.WhatsApp.com/send?phone=" + variable
webbrowser.open(link)