当我访问时,www.sampleweb.com/reg/
我有一个输入值,例如 .
<input id="input-id" class="input-class" name="myinput" type="text" value="hello world">
如何使用 python 获取输入的hello world
值www.sampleweb.com/reg/
?
我认为访问 www.sampleweb.com/reg/
是这样的:
url = 'http://www.sampleweb.com/reg/'
urlopen(url)
这在访问网址时是否正确?
任何人都可以帮助我处理我的情况吗?
提前致谢 ...