I wanted to let the user make a choice, like the example below:
group = input("Which group you want to analyze: \n 0-All_Groups \n 1-Caltech \n 2-KKI \n 3-Leuven) name_db = group But I want to do something like, for example, if the user inputs 0 the variable name_db will contain 'All_Groups', instead of 0... How can I do that?
Thanks in advance!