Imagine that in an experiment a participant draws a signal:
Senal1_part1 = random.choice("ABCD")
Senal1_part2 = random.choice("ABCD")
I create a dictionary where I want to store the signals that that participant will observe throughout the experiment. I want the assigned signal to be added with value 1 to the dictionary.
Memoria_part2 = {"A":0, "B":0, "C":0, "D":0}
How can I store the value in the dictionary?