《python灰帽子》记录笔记和源代码

5-18 3,887 views

python源代码下载:点击下载本书源码 "一 from ctypes import * "二 CPU 一般 有8个寄存器 . EAX – > 累加器,一般用于执行加...
阅读全文 0

PHP做验证码

5-18 4,574 views

点击下载字体文件 <?php //PHP验证码 class Code{ //图像资源 private $img; //宽度 private $width; //高度 private $height...
阅读全文 1

php面试题汇总~~

5-17 4,393 views

php面试题汇总(点我下载)
阅读全文 0

python开发_python关键字

5-15 3,651 views

python3.3.2中的关键字如下: The following identifiers are used as reserved words, or keywords of the language, and cannot be used as ordinary ident...
阅读全文 0

mysql 启动报错 /var/run/mysqld/mysqld.pid ended

5-14 5,624 views

mysql启动 提示 [root@localhost var]# Starting mysqld daemon with databases from /var/lib/mysql STOPPING server from pid file /var/run/mysqld/mysq...
阅读全文 0

Linux 下安装 python PIP

5-13 9,831 views

@1-> 命令行下运行 wget https://bootstrap.pypa.io/get-pip.py ,没有wget的请先去安装wget @2-> ~ python get-pip.py @3-> ~ pip -V ,出现...
阅读全文 0

Windows 下 python安装PIP

5-13 4,094 views

一 首先进入网址:https://packaging.python.org/tutorials/installing-packages/#installing-from-pypi @1–选择 get-pip @2–选择get-pip,...
阅读全文 0

python一些常用小函数,不定时更新~

5-12 3,607 views

首字母大写(map函数) #!/usr/bin/env python # -*- coding: utf-8 -*- def change(str): return {'a':'A','b':'B','c':'C','d':'D','e':'E','f':'F','g':...
阅读全文 0

python获取变量的数据类型

5-12 5,259 views

import types aaa = 0 print type(aaa) if type(aaa) is types.IntType: print "the type of aaa is int" if isinstance(aaa,int): pri...
阅读全文 1

python字符串转换成数字int的函数

5-12 4,322 views

#!/usr/bin/env python # -*- coding: utf-8 -*- def str2int(s): def fn(x,y): return x * 10 + y def char2num(s): return {'0':...
阅读全文 0