Найти - Пользователи
Полная версия: tk как передать переменную?
Начало » GUI » tk как передать переменную?
1
farex
Извеияюсь за кривой вопрос.
from Tkinter import *
import urllib

def urlGET(event):
url = urllib.URLopener()
resp = url.open('http://icanhazip.com/')
html = resp.read()
#print html.strip()
ent.insert(END, s) %htm


root = Tk()

but = Button(root, text="whats my ip ")
ent = Entry(root, width=20, bd=12)
but.bind("<Button-1>", urlGET)


ent.pack()
but.pack()
root.mainloop()
Не могу понять как передать ?
ent.insert(END, %s) %htm

Надеюсь вопрос понятен…
Нужно в ent получить вывод функции urlGet.
Пытаюсь передать так:
ent.insert(END, s) %htm
Ругается на тип str
farex
Разобрался сам:
tex.insert(END, “%s” % (html))
Dimka665
farex
Разобрался сам:
tex.insert(END, “%s” % (html))
tex.insert(END, html)
или
tex.insert(END, str(html))
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB