我正在尝试使用 python urllib2 从此表单中选择一个单选按钮并通过按钮提交表单:
<div id="show-form2" class="show-form2">
<input type="radio" name="2" value="21"/>
OPTION
<br/>
<input type="radio" name="2" value="22"/>
OPTION
<br/>
<input type="radio" name="2" value="23"/>
OPTION
<br/>
<input type="radio" name="2" value="24"/>
OPTION
<br/>
<input type="radio" name="2" value="25"/>
OPTION
<br/>
<input type="radio" name="2" value="26"/>
OPTION
<br/>
<input type="radio" name="2" value="27"/>
OPTION
<br/>
<input type="radio" name="2" value="28"/>
OPTION
<br/>
<input type="radio" name="2" value="29"/>
OPTION
<br/>
<input type="radio" name="2" value="30"/>
OPTION
<br/>
<input type="radio" name="2" value="31"/>
OPTION
<br/>
<input type="radio" name="2" value="32"/>
OPTION
<br/>
<input type="radio" name="2" value="33"/>
OPTION
<br/>
<input type="radio" name="2" value="34"/>
OPTION
<br/>
<input type="radio" name="2" value="35"/>
OPTION
<br/>
<input type="radio" name="2" value="36"/>
OPTION
<br/>
<input type="radio" name="2" value="37"/>
OPTION
<br/>
<input type="radio" name="2" value="38"/>
OPTION
<br/>
<input type="radio" name="2" value="39"/>
OPTION
<br/>
<input type="radio" name="2" value="40"/>
OPTION
<br/>
我在这个任务中有点迷失,我找到的信息与使用机械化有关。有没有办法用 python 标准库完成这项工作?
问候。