如何在数组泡沫中写入此输出,其余数组 - 数组位置输出0.0000

时间:2015-10-14 06:53:31

标签: pygtk

import gtk

类PyApp(gtk.Window):

def __init__(self):
    super(PyApp, self).__init__()

    self.set_title("Entry")
    self.set_size_request(300, 300)
    self.set_position(gtk.WIN_POS_CENTER)

    fixed = gtk.Fixed()

    self.label = gtk.Label("Entry")
    fixed.put(self.label, 40, 40)

    self.entry = gtk.Entry()
    fixed.put(self.entry, 80, 40)

    button1 = gtk.Button("OK")
    button1.connect('clicked', self.button_clicked)
    fixed.put(button1, 130, 90)


    self.connect("destroy", gtk.main_quit)
    self.add(fixed)
    self.show_all()

def button_clicked(self, widget):
    with open('entry.txt', 'w') as f:
        f.write(self.entry.get_text())

PyApp() gtk.main()

我需要输出如下:

  

entry_text 0.0000 0.0000 0.0000

     

0.0000 0.0000 0.0000 0.0000

     

0.0000 0.0000 0.0000 0.0000

     

0.0000 0.0000 0.0000 0.0000

感谢所有帮助!

0 个答案:

没有答案