我有一个程序,它从用户处获取输入,并使用该Population()函数显示输入的多种变化。该store_fit函数将这些不同的变体添加到列表中,然后将其删除,以便该列表一次仅填充一个变体。
我希望能够从列表中获取变体并使用它来更新我的文字。但是,我的程序仅在Population功能完成后才更新文本。如何运行该Population功能并同时更新文本? fit = [] ...
def store_fit(fittest): # fittest is each variation from Population
clear.fit()
fit.append(fittest)
...
pg.init()
... done = False
while not done:
... if event.key == pg.K_RETURN:
print(text)
target = text
Population(1000) #1000 variations
store_fit(value)
fittest = fit[0]
...
top_sentence = font.render(("test: " + fittest), 1, pg.Color ('lightskyblue3'))
screen.blit(top_sentence, (400, 400))
我建议使用Population生成器功能。
def Populate(text, c):
for i in range(c):
# compute variation
# [...]
yield variation
创建一个迭代器,并用于next()检索循环中的下一个变量,因此您可以打印每个单个变量:
populate_iter = Populate(text, 1000)
final_variation = None
while not done:
next_variation = next(populate_iter, None)
if next_variation :
final_variation = next_variation
# print current variation
# [...]
else:
done = True
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。