上一页 1 2 3 4 5 6 7 8 9 10 ··· 36 下一页
摘要: from tkinter import * ws = Tk() ws.title("Python Guides") ws.geometry("200x200") name_variable = StringVar() password_var = StringVar() def submit(): 阅读全文
posted @ 2021-11-17 19:20 linbo.yang 阅读(38) 评论(0) 推荐(0) 编辑
摘要: https://pythonguides.com/python-tkinter-save-text-to-file/ from tkinter import * from tkinter.ttk import * ws = Tk() ws.title("Python Guides") ws.geom 阅读全文
posted @ 2021-11-17 16:42 linbo.yang 阅读(65) 评论(0) 推荐(0) 编辑
摘要: https://tkdocs.com/tutorial/firstexample.html Code 1 from tkinter import * 2 from tkinter import ttk 3 4 5 def calculate(*args): 6 try: 7 value = floa 阅读全文
posted @ 2021-11-17 10:55 linbo.yang 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(394) 评论(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 阅读(240) 评论(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 阅读(78) 评论(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 阅读(459) 评论(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 阅读(123) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 36 下一页