使用用户数据编辑 URL Python Mechanize

发布于 2024-12-09 16:48:45 字数 523 浏览 0 评论 0原文

我在 Python 中的 Mechanize 中有一个 URL,内容如下:

members_booking.php?operation=member_day&course_id=1&d_date=2011-10-5&comp=1

但我想根据用户输入到控制台的数据来更改该 url,例如:

year = raw_input("Enter the YEAR")
month = raw_input("Enter the MONTH")
day = raw_input("Enter the DAY")

因此,根据用户在上述代码中输入的数据,它将更改网址。 (网址中写着 d_date=2011-10-5& ,我基本上想将其更改为 d_date=year-month-dat&

如何根据用户输入编辑这些字符串?在 C 中(我唯一的观点参考)我会使用“d_date=%i-%i-%i&amp”、年、月、日或类似的东西

I have an URL in Mechanize in Python that reads:

members_booking.php?operation=member_day&course_id=1&d_date=2011-10-5&comp=1

But I want to change that url depending on the data that the user inputs to the console, eg:

year = raw_input("Enter the YEAR")
month = raw_input("Enter the MONTH")
day = raw_input("Enter the DAY")

And so that depending on the data the user has inputted in the above code, it will change the url. (where it says d_date=2011-10-5& in the url, I basically want to change it to d_date=year-month-dat&

How do I edit these strings based on the users input? In C (my only point of reference) I would use "d_date=%i-%i-%i&", year, month, day or something to that effect

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

软的没边 2024-12-16 16:48:45
urlstring = "members_booking.php?operation=member_day&course_id=1&d_date=%s-%s-%s&comp=1"

year = raw_input("Enter the YEAR: ")
month = raw_input("Enter the MONTH: ")
day = raw_input("Enter the DAY: ")

print urlstring % (year, month, day)
urlstring = "members_booking.php?operation=member_day&course_id=1&d_date=%s-%s-%s&comp=1"

year = raw_input("Enter the YEAR: ")
month = raw_input("Enter the MONTH: ")
day = raw_input("Enter the DAY: ")

print urlstring % (year, month, day)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文