上一页 1 2 3 4 5 6 7 8 9 10 ··· 36 下一页
摘要: scrolledtext import tkinter as tk from tkinter.scrolledtext import ScrolledText root = tk.Tk() scrolledText = ScrolledText(root, width=20, height=10) 阅读全文
posted @ 2021-11-12 17:41 linbo.yang 阅读(378) 评论(0) 推荐(0) 编辑
摘要: https://pythonguides.com/python-tkinter-treeview/#Python_Tkinter_Treeview_Table 1 import tkinter as tk 2 from tkinter import ttk 3 from tkinter import 阅读全文
posted @ 2021-11-08 16:28 linbo.yang 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 12306 出发: 0123456789 <-> 目的: 0123456789 □同城 日期: < 123456789 > 更多日期: □添加更多日期 多站: □启用 多站查询 发车: 00:00-24:00 筛选: □全部 □高铁 □动车 □Z直达 □T特快 □K快速 □其它 隐藏: □全选 □商 阅读全文
posted @ 2021-11-05 18:08 linbo.yang 阅读(87) 评论(0) 推荐(0) 编辑
摘要: excel 通过合并计算来比较2列数据的差异 ; 创建组与分类汇总 ; power bi 和 power Query excel 常用图表: 花火图表 https://hanabi.data-viz.cn/ranking?lang=zh-CN 阅读全文
posted @ 2021-11-04 22:31 linbo.yang 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 转载:https://learnku.com/articles/38601 阅读全文
posted @ 2021-10-28 15:30 linbo.yang 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 思路: 1.从presto 中找出查询慢的sql(>10s) 大约1.4w条,放入mysql 中(具体问什么会放入mysql 后面说该问题) 2.使用Jmeter 连接 presto 进行查询 ,查询sql从mysql中随机获取 ; 遇到的问题: 将sql放入csv文件,presto 的查询sql从 阅读全文
posted @ 2021-09-28 16:33 linbo.yang 阅读(433) 评论(0) 推荐(0) 编辑
摘要: 参考: https://docs.python.org/zh-cn/3/library/pathlib.html#correspondence-to-tools-in-the-os-module Path.parents # 返回所有上级目录的列表 Path.parts # 分割路径 类似os.pa 阅读全文
posted @ 2021-09-26 12:32 linbo.yang 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 1 import tkinter as tk 2 from tkinter import ttk 3 def login(root): 4 login_frame = tk.Frame(root) 5 login_frame.grid(padx=15, pady=15) 6 ttk.Label(lo 阅读全文
posted @ 2021-09-24 10:02 linbo.yang 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/hepu8/article/details/90345072 1 # -*- coding: utf-8 -*- 2 import tkinter as tk #装载tkinter模块,用于Python3 3 from tkinter import 阅读全文
posted @ 2021-09-22 18:33 linbo.yang 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/hepu8/article/details/89417831 用Tkinter打造GUI开发工具(12)Tkinter小部件的grid布局部件的网格放置grid()方法是使用行列位置的方法放置部件。 grid()方法布局管理器会将控件放置到一个二维的 阅读全文
posted @ 2021-09-22 18:19 linbo.yang 阅读(278) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 36 下一页