打印天气更新在tkinter Gui界面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了打印天气更新在tkinter Gui界面相关的知识,希望对你有一定的参考价值。
我想在tkinter gui界面打印条件天气。所以我写了这段代码....
import tkinter as tk
from tkinter import *
from weather import Weather,Unit
win=tk.Tk()
weather = Weather(unit=Unit.CELSIUS)
location=weather.lookup_by_location('Dhaka')
condition=location.condition
label=Label(text=condition)
label.pack()
win.mainloop()
但我想要显示像Sunny,Thunderstorm等条件的输出。
答案
您已将对象链接到标签,您需要调用该文本。 condition.text
import tkinter as tk
from tkinter import *
from weather import Weather,Unit
win=tk.Tk()
weather = Weather(unit=Unit.CELSIUS)
location=weather.lookup_by_location('Dhaka')
condition=location.condition
label=Label(text=condition.text)
label.pack()
win.mainloop()
以上是关于打印天气更新在tkinter Gui界面的主要内容,如果未能解决你的问题,请参考以下文章