I want to add a dot as my focus point between my stimuli

I drew out where I would place the points to focus. I have 10 trails I want the point to appear each time.


THIS IS MY CODE
def genString(n):
uppercase = (‘ABCDEFGHIJKLMNOPQRSTUVWXYZ’);
stringo = ‘’;
for i in range(n):
stringo += uppercase[randint(0,25)];
return stringo;
amp1=0.3
amp2=0.3
ang1=(avgangle+(diffangletemp/2))(math.pi/180)
ang2=(avgangle-(diffangletemp/2))
(math.pi/180)

digit1 = str(randint(3,8));
for i in range(3):
if i == 1:
str_l = genString(1);
str_r = genString(1);
stringo = str_l + digit1 + str_r;
else:
stringo = genString(3);
if i==0:
textbox1 = stringo;
else:
textbox1 = textbox1 + ‘\n’ + stringo;

digit2 = str(randint(3,8));
for i in range(3):
if i == 1:
str_l = genString(1);
str_r = genString(1);
stringo = str_l + digit2 + str_r;
else:
stringo = genString(3);
if i==0:
textbox2 = stringo;
else:
textbox2 = textbox2 + ‘\n’ + stringo;
#textbox1= digit1
#textbox2= digit2

I’m assuming that it doesn’t do what you want it to do, but you haven’t mentioned any errors or issues.

There are no errors/issues. I just want to know how can I add the point I drew out between my stimuli.

Thank you

How did you decide where you wanted the dot in this image?

I want it between my stimuli each trial. I want a focusing point between them.

Thank you