使用用户数据编辑 URL Python Mechanize
我在 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&”、年、月、日或类似的东西
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)