I am new to python programming and I was reading the headfirst python book. I wrote the correct code but it is not working why?
import cgiform_data = cgi.FieldStorage()The following line gives an error:
athlete_name = form_data['Which_Athelete']and the Error is:
Traceback (most recent call last): File "C:/Users/Hamza Shah/Desktop/Headfirst Python/chapter7/webapp/cgi-bin/generate_timing_data.py", line 7, in <module> athlete_name = form_data['Which_Athelete'] File "C:\Users\Hamza Shah\AppData\Local\Programs\Python\Python37-32\lib\cgi.py", line 534, in __getitem__ raise KeyError(key)KeyError: 'Which_Athelete'