资源简介


资源截图

代码片段和文件信息

from tkinter import *
import tkinter as tk
import requests
from PIL import ImageTk as itk


class Myframe(frame):
    def __init__(self):
        self.root=Tk()

        self.root.title(“天气查询“)
        self.root.geometry(‘1200x700+400+220‘)

        bg = tk.Canvas(self.root width=1200 height=600 bg=‘white‘)
        #self.img = itk.PhotoImage(file=“bg.gif“)
        #bg.place(x=100 y=40)
        #bg.create_image(0 0 anchor=NW image=self.img)

        self.city = Entry(self.root width=16 font=(“仿宋“ 18 “normal“))
        self.city.place(x=200 y=60)

        citylabel=Label(self.roottext=‘查询城市‘font=(“仿宋“ 18 “normal“))
        citylabel.place(x=80y=60)

        #查询按钮
        chaxun = Button(self.root width=10 height=3 text=“查询“ bg=‘#00CCFF‘ bd=5 fo

评论

共有 条评论