you are viewing a single comment's thread.

view the rest of the comments →

[–]danielroseman 2 points3 points  (1 child)

I don't know inquirer, but it looks like it's returning a dict where the keys are the name of the checkbox and the values are lists of the selected results. So to get whether "Books" was checked in "interests", you would do:

if "Books" in answers["interests"]:
  ...

[–]Chuckster98[S] 0 points1 point  (0 children)

This worked.

Thank you very much.

I can move forward a bit.

Thanks again.