edsl
edsl copied to clipboard
QuestionList is sometimes returning the intended number of items joined as a single string returned as the single item in a list
Eg here we ask for a list of 5 items and QuestionList returns a single string containing the 5 items joined:
Specifying that the list be comma-separated throwing an error:
QuestionFreeText can be a workaround:
Workaround is results.to_list()[0][0].split(", ")
Workarounds for this problem are not ideal: