As soon as i define this dictionary:
case_dict={
"run" : runn(),
"name" : namee(),
"help" : helpp(),
"quit": quitt(),
}
python runs all these functions successively. How do i avoid these functions from running in the console when i just want to define the dict ?
PS: all these functions are defined earlier in the code.