wxpython SetValue 获取列表数据获取不到


self.m_textCtrl4.SetValue(files)

同样的方法获取其他值就获取到了 ,后来想了想files是列表数据,于是将类型变为str型成功

self.m_textCtrl4.SetValue(str(files))
显示效果