打印天气更新在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()

但输出样本是...... This is my unexpected output

但我想要显示像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界面的主要内容,如果未能解决你的问题,请参考以下文章

使用Python获取各个城市当前的天气情况

读取串行输入并打印到Tkinter GUI

[Python]GUI编程练习 -- 获取天气预报

如何成功抽象以下代码行? (Python Tkinter GUI)

Python-GUI界面设计(tkinter)

Python GUI编程(Tkinter) windows界面开发