这一定是一个非常愚蠢的问题。我正在关注如何使用 requests 和 beautifulSoup 的小教程,在示例中,有一个:
# Build a dictionary containing our form field values
# http://docs.python.org/tutorial/datastructures.html#dictionaries
form_data = {
'name':'Romney', # committee name field
'type':'P', # committee type is P for Presidential
'frmtype':'F3P', # form type
}
esponse = requests.post('http://query.nictusa.com/cgi-bin/dcdev/forms/', data=form_data)
我的问题是,我应该如何知道键的值?
谢谢。