python3.7界面_Python3.7+tkinter实现查询界面功能

Tkinter 是 Python 的标准 GUI 库。Python 使用 Tkinter 可以快速的创建 GUI 应用程序。

这篇文章使用tkinter实现一个简单的查询界面

#!/usr/bin/python

# -*- coding: UTF-8 -*-

from tkinter import *

import sqlite3

# 导入消息对话框子模块

import tkinter.messagebox

#import urllib

#创建主窗口

root = Tk()

root.title('球员查询')

# 设置窗口大小

root.minsize(500,500)

#定义变量

name = StringVar()

name.set('')

club = StringVar()

club.set('')

nation = StringVar()

nation.set('')

height = StringVar()

height.set('')

position = StringVar()

position.set('')

age = StringVar()

age.set('')

weight = StringVar()

weight.set('')

num = StringVar()

num.set('')

birthday = StringVar()

birthday.set('')

habit = StringVar()

habit.set('')

#name text, club text, nation text, height text, position text, age text, weight text, num text, birthday text, habit text

le_name = Label(root, textvariable = name).place(x = 100, y = 80) #姓 名

le_club = Label(root, textvariable = club).place(x = 100, y = 110) #俱乐部

le_nation = Label(root, textvariable = nation).place(x = 100, y = 140) #国籍

le_height = Label(root, textvariable = height).place(x = 100, y = 170) #身高

le_position = Label(root, textvariable = position).place(x = 100, y = 200) #位置

le_age = Label(root, textvariable = age).place(x = 100, y = 230) #年龄

le_weight = Label(root, textvariable = weight).place(x = 100, y = 260) #体重

le_num = Label(root, textvariable = num).place(x = 100, y = 290) #出场数

le_birthday = Label(root, textvariable = birthday).place(x = 100, y = 320) #生日

le_habit = Label(root, textvariable = habit).place(x = 100, y = 350) #惯用脚

#查询按钮响应函数

def select(root, label):

sname = label.get()

print('input: ',sname)

#查询刚才插入的数据

#由于刚才已经关闭了数据库连接,需要重新创建Connection对象和Cursor对象

conn = sqlite3.connect('dongqiudi.db')

#c = conn.execute('''select * from footballers''')

#c = conn.execute("select * from footballers where name like?",(sname,))

print("select * from footballers where name like '%"+sname+"%'")

c = conn.execute("select * from footballers where name like '%"+sname+"%'")

#print(c) #

list_re = list(c)

print('result: ', list_re) #[('艾克森', '15', 'ChOxM1xC0BiAe2D7AAAN-qiRteQ443.png')]

if len(list_re) <= 0:

tkinter.messagebox.showinfo('提示',sname+'球员不存在,请输入其他球员姓名!')

else:

print('result_name: ', list_re[0][0])

#数据成功提取出来了

#name text, club text, nation text, height text, position text, age text, weight text, num text, birthday text, habit text

name.set(list_re[0][0]) #姓 名

club.set(list_re[0][1]) #俱乐部

nation.set(list_re[0][2]) #国籍

height.set(list_re[0][3]) #身高

position.set(list_re[0][4]) #位置

age.set(list_re[0][5]) #年龄

weight.set(list_re[0][6]) #体重

num.set(list_re[0][7]) #出场数

birthday.set(list_re[0][8]) #生日

habit.set(list_re[0][9]) #惯用脚

conn.close()

#定义一个返回按钮调用的返回函数:callback

def exit_program():

quit()

def main():

input_name = Label(root, text = '请输入球员姓名:').place(x = 30, y = 30)

label = StringVar()

entry = Entry(root,bg='#ffffff',width=20,textvariable=label).place(x=130,y=30,anchor='nw')

#按钮

select_button = Button(root,bg='white',text='查询',width=10,height=1,

command=lambda :select(root, label)).place(x=280,y=26,anchor='nw')

exit_button = Button(root,bg='white',text='退出',width=10,height=1,

command=lambda :exit_program()).place(x=380,y=26,anchor='nw')

#command是Button中的option项,可以指定点击button时调用的callback函数

#name text, club text, nation text, height text, position text, age text, weight text, num text, birthday text, habit text

le_name = Label(root, text = '姓 名:').place(x = 40, y = 80)

le_club = Label(root, text = '俱乐部:').place(x = 40, y = 110)

le_naion = Label(root, text = '国 籍:').place(x = 40, y = 140)

le_height = Label(root, text = '身 高:').place(x = 40, y = 170)

le_positon = Label(root, text = '位 置:').place(x = 40, y = 200)

le_age = Label(root, text = '年 龄:').place(x = 40, y = 230)

le_weight = Label(root, text = '体 重:').place(x = 40, y = 260)

le_num = Label(root, text = '号 码:').place(x = 40, y = 290)

le_birthday = Label(root, text = '生 日:').place(x = 40, y = 320)

le_habit = Label(root, text = '惯用脚:').place(x = 40, y = 350)

#显示图片

#pilImage = Image.open("imgs/1574777943.3190248.png")

#tkImage = ImageTk.PhotoImage(image=pilImage)

#label_nation = Label(root, image=tkImage).place(x=90, y=130, anchor='nw')

root.mainloop()

main()

19122460163586496714179028.png

总结

以上所述是小编给大家介绍的Python3.7+tkinter实现查询界面功能,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!

如果你觉得本文对你有帮助,欢迎转载,烦请注明出处,谢谢!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/505972.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

python中级水平_python 初级/中级/高级/核心

"一等对象":满足条件&#xff1a;1.在运行时创建 2.能赋值给变量或数据结构中的元素 3.能作为参数传递给函数 4.能作为函数的返回结果[ 整数、字符串、字典、"所有函数" ]等都是一等对象"什么是函数"调用&#xff1a;直接使用、不需要类或对象进…

c语言报错spawning 插1,C语言错误····error spawning c1.exe

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼“CL.exe”是VC使用真正的编译器(编译程序)&#xff0c;其路径在“VC根目录\VC98\Bin”下面&#xff0c;你可以到相应的路径下找到这个应用程序。因此问题可以按照以下方法解决&#xff1a;打开vc界面 点击VC“TOOLS(工具)”—>…

python中的元类_Python中的元类(metaclass)

提问者自称已经掌握了有关Python OOP编程中的各种概念&#xff0c;但始终觉得元类(metaclass)难以理解。他知道这肯定和自身有关&#xff0c;但仍然觉得不太明白&#xff0c;希望大家可以给出一些实际的例子和代码片段以帮助理解&#xff0c;以及在什么情况下需要进行元编程。 …

方言大全_长沙人亲戚称呼大全!记得收藏以防失传!

长沙人亲戚称呼大全&#xff01;记得收藏以防失传&#xff01;首先&#xff0c;看一下中国亲戚称谓图&#xff01;▼长沙方言对于亲人的称谓自有一套说法&#xff01;(如有不同&#xff0c;以你自己的叫法为准哦~)▼长辈篇父亲&#xff1a;ya、“爷(ya)老倌”&#xff0c;“爷(…

adb android源码分析,Android Adb 源码解析(base on Android 9.0)

Adb 框架Adb架构Android Adb 一共分为三个部分&#xff1a;adb、adb server、adbd&#xff0c;源码路径&#xff1a;system⁩/⁨core⁩/⁨adb。adb和adb server 是运行在PC端&#xff0c;adb就是大家所熟悉的控制台命令adb&#xff0c;adb server是由adb fork出的一个常驻后台的…

oracle 解锁 账户_oracle用户解锁三种方法

ORA-28000: the account is locked-的解决办法2009-11-11 18:51ORA-28000: the account is locked第一步&#xff1a;使用PL/SQL&#xff0c;登录名为system,数据库名称不变&#xff0c;选择类型的时候把Normal修改为Sysdba;第二步&#xff1a;选择myjob,查看users;第三步&…

android 解码webp动画,android webp编解码详解

key words&#xff1a;android decode webp sample当我敲下键盘的时候有种深深的耻辱感&#xff0c;看到android 4.0支持webp格式的图像&#xff0c;于是我狠命的找提供了什么样的api&#xff0c;nnd&#xff0c;硬是没找到&#xff0c;后来抱着试试的心态&#xff0c;用Bitmap…

python生成json_如何将Python数组转为Json格式数据并存储?

在Python中将数组转为Json数据存储时需要用到将json模块中的json.dumps()或者json.dump()方法。 json.dumps()方法用法 使用json.dumps( )方法将Python数组转为json格式数据 # 导入json模块 import json # 定义Python数组 py_list [{JavaEE: "http://java.itheima.com&qu…

rust里mp5a4_Rust源码分析:channel内部mpsc队列

首先&#xff0c;之前的upgrade过程中内存的回收要稍微注意下。因为Receiver现在指向shared::Packet之后&#xff0c;那个new_port需要被析构&#xff0c;也就是调用drop函数&#xff0c;我们看下drop的实现&#xff1a;implDropforReceiver{fn drop(&mutself){match*unsaf…

android settext 参数,Android TextView.setTextColor()的参数设置方式

摘要&#xff1a;Android TextView.setTextColor()的参数设置方式查了下资料发现setTextColor()的参数应该写成以下的这种形式&#xff1a;setTextColor(0xFF0000FF);//0xFF0000FF是int类型的数据&#xff0c;分组一下0x|FF|0000FF&#xff0c;0x是代表颜色整数的标记&#xff…

vscode angular智能提示_【线下活动】手把手教你玩转 VS Code 插件开发

感谢 Google Developer Group 的邀请&#xff0c;3 月 30 号下午&#xff0c;韩老师将手把手带你玩转 VS Code 插件开发。 Angular 使用了 TypeScript&#xff0c;VS Code 使用了 Chromium。感谢这个开放与包容的时代&#xff0c;技术无界&#xff0c;正是大家对技术有着执着的…

ext js如何动态更改xtype_K8S ConfigMap 用于动态应用程序的实践

编辑&#xff1a;小君君技术校对&#xff1a;星空下的文仔、bot在 Kubernetes 中&#xff0c;ConfigMap 是允许管理员将配置组件与镜像内容解耦&#xff0c;使容器化应用程序产生可移植性的一种资源。ConfigMap 可以与 Kubernetes Pod 一起使用&#xff0c;用于动态添加或更改容…

android contacts 编辑,如何在Android中的.csv文件中逐行编写contactn...

编辑.import java.io.File;import java.io.FileWriter;import java.io.IOException;import android.app.Activity;import android.content.Intent;import android.database.Cursor;import android.net.Uri;import android.os.Bundle;import android.os.Environment;import andr…

python教材答案第六章_python第六章{输入和输出}

输出 用print加上字符串&#xff0c;就可以向屏幕上输出指定的文字。比如输出hello, world&#xff0c;用代码实现如下&#xff1a; >>>print hello, world print语句也可以跟上多个字符串&#xff0c;用逗号“,”隔开&#xff0c;就可以连成一串输出&#xff1a; >…

字长16位的计算机表示最大整数_废话不多说跪送计算机选择8前十题

1.字长是CPU的主要性能指标之一,它表示(a)a.CPU—一次能处理二进制数据的位数b.最长的十进制整数的位数c.最大的有效数字位数d.计算结果的有效数字长度答案解析【解析】字长是指计算机运算部件一次能同时处理的二进制数据的位数。2.字长为7位的无符号二进制整数能表示的十进制整…

python程序结构框架_Python——Flask框架——程序的基本结构

一、安装 pip install flask 二、初始化 from flask importFlask app Flash(__name__) 三、路由&#xff1a;处理URL和函数之间的关系的程序称为路由 &#xff08;1&#xff09;路由装饰器 app.route(/)defindex():return ( Hello World) &#xff08;2&#xff09;动态路由 ap…

阿里云python服务器_Python服务器

{"moduleinfo":{"card_count":[{"count_phone":1,"count":1}],"search_count":[{"count_phone":6,"count":6}]},"card":[{"des":"云服务器 ECS(Elastic Compute Service)是一…

单片机传输浮点数给android,请问单片机怎么接收从串口发送过来的浮点数?

如题&#xff0c;单片机接收串口发送的浮点数&#xff0c;然后进行处理&#xff0c;我想的是建立一个二维数组&#xff0c;想把浮点数一位一位的存到数组里&#xff0c;因为要接收多个浮点数所以用了二维数组&#xff0c;可是实际发现是不可行的&#xff0c;请问到底应该怎么接…

节点name在graph中无法展示_图节点分类与消息传递

Message passing and node classification本文主要解决的问题&#xff1a;给定一个网络&#xff0c; 其中部分节点有label&#xff0c; 如何能将其他的节点分配对应的节点label呢&#xff1f; &#xff08;在生活中有很多这样的例子&#xff0c; 比如通过交互行为来判断用户是否…

iview 输入框_使用iview框架,如何进行输入框或者按钮的关联验证

iview框架的Form 组件基于 async-validator 实现数据验证,给 Form 设置属性 rules&#xff0c;同时给需要验证的 FormItem 设置属性 prop 指向对应字段即可。简单的验证北京上海深圳男女提交重置export default{data () {return{formValidate: {name:,mail:,city:,gender:,inte…