设置Forloop中的所有值

时间:2016-11-03 20:45:11

标签: python wxpython

我需要将所有值设置为textctrl,但它只设置las值

lstA = list(CONTENIDO)
for RT in lstA:
    print RT
    self.loggerb.SetValue(RT)

1 个答案:

答案 0 :(得分:0)

也许你想要

curve_fit

self.loggerb.SetValue(", ".join(CONTENIDO))

或者你想要像

这样的东西
self.loggerb.SetValue("\n".join(CONTENIDO))