Я новичок в python
Мой код должен возвращать значение поиска с формами на веб-странице.
Но он возвращает следующую ошибку: mechanize._mechanize.FormNotFoundError: нет имени, соответствующего имени 'широта'
Код:
latitude = input("Latitude: ")
longitude = input("Longitude: ")
height = input("Height: ")
br.open("https://usa.wavedb.com/channelsearch/tvws")
br.select_form ("latitude")
br['latitude'] = latitude # query
br.select_form ("longitude")
br['longitude'] = longitude
br.select_form ("heightAgl")
br['heightAgl'] = height
response = br.submit()
print(response.read())