Block not accessing information in loop (2)

That seems to be an error with the component.

Nice that you found the error. I would definitely to some string manipulation in Python rather than changing your csv file. Probably easiest way to clean up textbox_answer:

textbox_answer = textbox.text
textbox_answer = textbox_answer.replace(“Type here:“, “”).strip() # strip to make sure of removing whitespace

Also keep in mind that it might be a good idea to convert both the textbox answer and answer to same captilization. Either using lower() or upper() on both.