Open
Description
One of the way to possibly display several scales and/or choices at the same time might be to create a class
scale / choice. This will change their behavior to something like:
# Create a scale object
eval_mood = scale(title="how is my mood?") # Create a scale object
eval_mood.display() # Display a simple scale
# Same for choice
choice_gender = choice(["Male", "Female"], title="Gender?")
choice_gender.display()
# To display both
multiple_display([eval_mood, choice_gender], y=[4, -2])
However, I'm worrying that it would get a bit more redundant / complicated / less straightforward to display simple scales / choices that it is now.
What do you think?