if you == 1:
one.put(argument)
elif you == 3:
pass
elif you == 4:
two.put(argument)
elif you == 5:
three.put(argument)
...
...
...
a lot of elif
settings = {
1: one
4: two,
5: three
...
...
...
other elemets of dict
}
if you in settings:
settings[you].put(argument)
elif you == 3:
pass