上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 31 下一页
摘要: 一,docx模块 Python可以利用python-docx模块处理word文档,处理方式是面向对象的。也就是说python-docx模块会把word文档,文档中的段落、文本、字体等都看做对象,对对象进行处理就是对word文档的内容处理。 二,相关概念 如果需要读取word文档中的文字(一般来说,程 阅读全文
posted @ 2018-10-31 17:11 巨兽~墨菲特 阅读(5549) 评论(0) 推荐(1) 编辑
摘要: https://www.cnblogs.com/wupeiqi/articles/5246483.html Model 到目前为止,当我们的程序涉及到数据库相关操作时,我们一般都会这么搞: 创建数据库,设计表结构和字段 使用 MySQLdb 来连接数据库,并编写数据访问层代码 业务逻辑层去调用数据访 阅读全文
posted @ 2018-10-31 17:10 巨兽~墨菲特 阅读(156) 评论(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 巨兽~墨菲特 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 开发一个小程序。 文件结构 暂时这样子分配。后面随着项目的进展,增加文件。 File Dialogs 我会用到文件对话框。http://effbot.org/tkinterbook/tkinter-file-dialogs.htm 如何实现表格展示数据的效果 #!/usr/bin/env pytho 阅读全文
posted @ 2018-10-30 15:51 巨兽~墨菲特 阅读(143) 评论(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 巨兽~墨菲特 阅读(164) 评论(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 巨兽~墨菲特 阅读(133) 评论(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 巨兽~墨菲特 阅读(164) 评论(0) 推荐(0) 编辑
摘要: 转载::https://www.cnblogs.com/liuxianan/p/chrome-plugin-develop.html 写在前面 我花了将近一个多月的时间断断续续写下这篇博文,并精心写下完整demo,写博客的辛苦大家懂的,所以转载务必保留出处。本文所有涉及到的大部分代码均在这个demo 阅读全文
posted @ 2018-10-25 15:36 巨兽~墨菲特 阅读(224) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python3 #-*- coding:utf-8 -*- ''' Administrator 2018/10/23 ''' from win32com.client import Dispatch import win32com.client class easyEx 阅读全文
posted @ 2018-10-23 12:42 巨兽~墨菲特 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 安装包 阅读全文
posted @ 2018-10-23 12:41 巨兽~墨菲特 阅读(119) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 31 下一页