in the output data file, there is a column called ‘estimativa’. In this program, there are 7 buttons, each of them is named A, B, C, D, E, F, and G. When a button is clicked, the variable NUM receives a numeric value. I would like the value of NUM to be saved in the ‘estimativa’ column in the output file. I used the command exp.addData(‘estimativa’, num), but it didn’t work.
thisExp.addData
It’s still the same way. It doesn’t show any error, but in the ‘estimate’ column of the output data file, nothing loads
num = 0 # Inicializa a variável num
if mouse.isPressedIn(A):
resposta = ‘A’
num = 1
elif mouse.isPressedIn(B):
resposta = ‘B’
num = 2
… Outros casos …
elif mouse.isPressedIn(G):
resposta = ‘G’
num = 7
if num is None:
resposta = ‘Atenção ao tempo! Você tem 5 segundos para cada resposta!’
elif num == identificacao:
resposta = ‘A sua estimativa está correta!’
elif num > identificacao:
resposta = ‘A distância que você selecionou é maior do que a apresentada.’
else:
resposta = ‘A distância que você selecionou é menor do que a apresentada.’
thisExp.addData(‘estimativa’, num)