我想将for循环的输出逐步写入名为word的变量中。 for循环看起来像这样:
text = visual.TextStim(win=win, units='pix', height=20, font='Courier')
for i in range(len(word)):#calls upon the number of letters within a word
text.setText(word[i])#addresses a letter within a word
text.setPos()#give the letter a certain position on the screen
word=...
我想将每个字母逐个写入一个名为word的变量。我怎么能这样做?
非常感谢任何帮助。
答案 0 :(得分:0)
letters = ['a','b','c']
我的信件: word = word + i