上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 32 下一页
摘要: 演示示例 #!/usr/bin/env python3 #-*- coding:utf-8 -*- ''' Administrator 2018/11/1 ''' from tkinter import * #创建主窗口 root=Tk() root.title("植物大战僵尸") #设置窗体大小和 阅读全文
posted @ 2018-11-01 09:34 巨兽~墨菲特 阅读(230) 评论(0) 推荐(0)
摘要: ''' 人 类名:Person 属性: 姓名 身份证号 电话号 卡 卡 类名:Card 属性:卡号 密码 余额 行为: 银行 类名:bank 属性:用户列表 提款机 提款机 类名:ATM 属性:用户字典 行为: 开户 查询 取款 存储 转账 改密 锁定 解锁 补卡 销户 管理员 类名:admin 属 阅读全文
posted @ 2018-11-01 00:13 巨兽~墨菲特 阅读(199) 评论(0) 推荐(0)
摘要: 一,docx模块 Python可以利用python-docx模块处理word文档,处理方式是面向对象的。也就是说python-docx模块会把word文档,文档中的段落、文本、字体等都看做对象,对对象进行处理就是对word文档的内容处理。 二,相关概念 如果需要读取word文档中的文字(一般来说,程 阅读全文
posted @ 2018-10-31 17:11 巨兽~墨菲特 阅读(5661) 评论(0) 推荐(1)
摘要: https://www.cnblogs.com/wupeiqi/articles/5246483.html Model 到目前为止,当我们的程序涉及到数据库相关操作时,我们一般都会这么搞: 创建数据库,设计表结构和字段 使用 MySQLdb 来连接数据库,并编写数据访问层代码 业务逻辑层去调用数据访 阅读全文
posted @ 2018-10-31 17:10 巨兽~墨菲特 阅读(167) 评论(0) 推荐(0)
摘要: 简单的后台管理:石头管理 1、登陆注册 2 老师管理 班级管理 学员管理 3 增删改查 开发: 1. 定义数据库表结构 2. 登陆、注册 from django.db import models # Create your models here. class Classes(models.Mode 阅读全文
posted @ 2018-10-31 14:37 巨兽~墨菲特 阅读(274) 评论(0) 推荐(0)
摘要: 开发一个小程序。 文件结构 暂时这样子分配。后面随着项目的进展,增加文件。 File Dialogs 我会用到文件对话框。http://effbot.org/tkinterbook/tkinter-file-dialogs.htm 如何实现表格展示数据的效果 #!/usr/bin/env pytho 阅读全文
posted @ 2018-10-30 15:51 巨兽~墨菲特 阅读(149) 评论(0) 推荐(0)
摘要: https://docs.python.org/3/library/tkinter.html#tkinter-modules http://effbot.org/tkinterbook/ 小例子演示: 用类创建 #!/usr/bin/env python3 #-*- coding:utf-8 -*- 阅读全文
posted @ 2018-10-30 09:40 巨兽~墨菲特 阅读(178) 评论(0) 推荐(0)
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <button onclick="func1()">ajax提交</button> <script> 阅读全文
posted @ 2018-10-28 12:37 巨兽~墨菲特 阅读(139) 评论(0) 推荐(0)
摘要: 1、简介: Python标准库tkinter是对Tcl/Tk的进一步分装,与tkinter.ttk 和 tkinter.tik共同提供了强大的跨平台GUI编程功能。作为扩展,tkinter.ttk提供了Combobox、Progressbar和Treeview等组件,tkinter.scrolled 阅读全文
posted @ 2018-10-25 21:46 巨兽~墨菲特 阅读(172) 评论(0) 推荐(0)
摘要: 转载::https://www.cnblogs.com/liuxianan/p/chrome-plugin-develop.html 写在前面 我花了将近一个多月的时间断断续续写下这篇博文,并精心写下完整demo,写博客的辛苦大家懂的,所以转载务必保留出处。本文所有涉及到的大部分代码均在这个demo 阅读全文
posted @ 2018-10-25 15:36 巨兽~墨菲特 阅读(239) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 32 下一页