上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页
摘要: Radiobutton(单选按钮)与checkbutton(复选按钮) 阅读全文
posted @ 2020-10-29 18:03 yescarf 阅读(1056) 评论(0) 推荐(0) 编辑
摘要: Text属性与方法 阅读全文
posted @ 2020-10-29 17:10 yescarf 阅读(1782) 评论(0) 推荐(0) 编辑
摘要: frame 说明:屏幕上创建一块矩形区域,多作为容器来布局窗体 frame(根对象,[属性列表]) class Frame_tk(Tk): def __init__(self): self.windows=Tk() self.windows.geometry('300x200') self.show 阅读全文
posted @ 2020-10-28 18:42 yescarf 阅读(810) 评论(0) 推荐(0) 编辑
摘要: requests中的编码解码 阅读全文
posted @ 2020-10-28 18:20 yescarf 阅读(544) 评论(0) 推荐(0) 编辑
摘要: xpath基本用法 阅读全文
posted @ 2020-10-28 14:41 yescarf 阅读(2086) 评论(0) 推荐(0) 编辑
摘要: mysql 阅读全文
posted @ 2020-10-28 09:37 yescarf 阅读(153) 评论(0) 推荐(0) 编辑
摘要: Entry控件 Python Tkinter 文本框用来让用户输入一行文本字符串。 你如果需要输入多行文本,可以使用 Text 组件。 你如果需要显示一行或多行文本且不允许用户修改,你可以使用 Label 组件。 语法 语法格式如下: w = Entry( master, option, ... ) 阅读全文
posted @ 2020-10-22 16:51 yescarf 阅读(1237) 评论(0) 推荐(0) 编辑
摘要: tkinter三种布局管理器:pack、grid、palce 阅读全文
posted @ 2020-10-20 14:15 yescarf 阅读(1422) 评论(0) 推荐(0) 编辑
摘要: #列表推导式的高明之处 lis=[(i**2)/2 for i in range(1,11)] for i in lis: print(i) #找出桌面以xlsx结尾的文件 import os ls=[file for file in os.listdir(r'C:\Users\Desktop') 阅读全文
posted @ 2020-10-19 16:34 yescarf 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 字符串拼接 转至:https://blog.csdn.net/yangschfly/article/details/86522953?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1. 阅读全文
posted @ 2020-10-19 15:23 yescarf 阅读(95) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 13 下一页