按类别查询搜索结果
关于关键词 的检测结果,共 16
【Android平台】 Python Numpy教程
iibull | 2017-12-29 10:35:32 | 阅读(2250) | 评论(0)
https://zhuanlan.zhihu.com/p/20878530?refer=intelligentunit【阅读全文】
iibull | 2017-12-14 10:47:16 | 阅读(2580) | 评论(0)
http://blog.csdn.net/stereohomology/article/details/51169701伯乐在线已在 GitHub 上发起「Python 资源大全中文版」的整理。欢迎扩散、欢迎加入。环境管理管理 Python 版本和环境的工具包管理管理包和依赖的工具。包仓库本地 PyPI 仓库服务和代理。分发打包为可执行文件以便分发。构建工具将源码...【阅读全文】
iibull | 2017-12-08 11:13:49 | 阅读(2090) | 评论(0)
http://blog.csdn.net/crazy_fire/article/details/7506239   有一个生产线,一个消费线,那么我们要做的就是消费的不能比生产的要多。脚本如下:点击(此处)折叠或打开#!/usr/bin/env python'''Created on Apr 25, 2012...【阅读全文】
【Android平台】 python + GTK 界面编程
iibull | 2017-12-07 19:54:46 | 阅读(1770) | 评论(0)
http://python-gtk-3-tutorial.readthedocs.io/en/latest/里边还有各种空间的例子, 好用.【阅读全文】
iibull | 2017-12-07 19:18:04 | 阅读(2610) | 评论(0)
https://www.cnblogs.com/gala/archive/2011/09/22/2184801.html  有的时候需要用python处理二进制数据,比如,存取文件,socket操作时.这时候,可以使用python的struct模块来完成.可以用 struct来处理c语言中的结构体. struct模块中最重要的三个函数是pack(), unpack(), calcsize()pack(fmt, ...【阅读全文】
【Android平台】 python + mysql + gtk
iibull | 2017-12-06 11:17:31 | 阅读(1430) | 评论(0)
人脸识别后台.@page { margin: 2cm }pre.cjk { font-family: "DejaVu Sans Mono", monospace }p { margin-bottom: 0.25cm; line-height: 120% }Python 实现人脸识别算法和通讯路程. 数据库采用 mySql. Python + GTK 实现界面 UI 1: 注册界面, 测试界面. UI 2: 实时识别过程. 通讯过程使用JPG网络字节流....【阅读全文】
comcn2 | 2017-03-02 13:18:19 | 阅读(0) | 评论(0)
在android上运行python脚本,或者在android上使用python交互界面,对熟悉python的研究或开发人员来说,是一件很有吸引力的事情,因为python脚本真是非常高效,另外,有很多非常好的库android官方目前没有支持在android设备运行python,但是网上有一些项目组做了这个事情: http://geeknizer.com/install-run-p...【阅读全文】
【Android平台】 python 使用时间
comcn2 | 2016-12-15 07:29:49 | 阅读(0) | 评论(0)
(datetime.datetime.now()- datetime.timedelta(seconds=3600)).strftime('%Y-%m-%d %H:%M:%S')datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S')【阅读全文】
【Android平台】 C/Python 之间的调用关系
lyf9ljh | 2016-09-20 20:36:13 | 阅读(1980) | 评论(0)
由于python有很多功能强大的开源库,c可以借用其中方法,完成更多的功能。因此C调用python的方法尤其重要。方法/步骤ubuntu 14.04 linux cgcc (Ubuntu 4.8.2-19ubuntu1) 4.8.2Pyt...【阅读全文】
大镇 | 2016-07-13 16:13:37 | 阅读(1930) | 评论(0)
【Android平台】 python getopt使用
天川一水 | 2016-06-23 14:54:07 | 阅读(1190) | 评论(0)
python中 getopt 模块,该模块是专门用来处理命令行参数的函数getopt(args, shortopts, longopts = [])参数args一般是sys.argv[1:]shortopts 短格式 (-) longopts 长格式(--) 命令行中输入:python test.py -i 127.0.0.1 -p 80 55 66python test.py --ip=127.0.0.1 --port=80 55 66下面的代码:try:opt...【阅读全文】
【Android平台】 Python 中的Pyc文件
天川一水 | 2016-06-16 17:12:11 | 阅读(1210) | 评论(0)
首先我申明,我不是很懂pyc文件,也不是很懂Python。之所以写这个是因为今天刚好在执行python的时候发现目录下多了个pyc文件,用nodepad打开居然全部是二进制码,所以就google下。也顺便学习: pyc 是由py文件经过编译后二进制文件,py文件变成pyc文件后,加载的速度有所提高,而且pyc是一种跨平台的字...【阅读全文】
【Android平台】 C/Python 之间的调用关系
Larpenteur | 2016-04-27 03:40:30 | 阅读(2500) | 评论(0)
由于python有很多功能强大的开源库,c可以借用其中方法,完成更多的功能。因此C调用python的方法尤其重要。方法/步骤ubuntu 14.04 linux cgcc (Ubuntu 4.8.2-19ubuntu1) 4.8.2Pyt...【阅读全文】
【Android平台】 C/Python 之间的调用关系
iibull | 2016-04-19 11:29:42 | 阅读(28350) | 评论(1)
由于python有很多功能强大的开源库,c可以借用其中方法,完成更多的功能。因此C调用python的方法尤其重要。方法/步骤ubuntu 14.04 linux cgcc (Ubuntu 4.8.2-19ubuntu1) 4.8.2Pyt...【阅读全文】
nskjdhg | 2014-01-22 13:47:01 | 阅读(580) | 评论(0)
That Castro. ' The Bissell immediately gasped out a breath.He knew it would be very dangerous material action. So, he asked: "This is I authorized it?" Allen Dulle. said: Well... michael kors outlet houstonThis is the highest organ of the authorization. ' Dulle. of course, can not say the name ...【阅读全文】
【Android平台】 初识python
chengyake | 2012-09-09 21:03:40 | 阅读(21) | 评论(0)
第一次关注python是在2011年底,当时在展讯听同事xiaguowu说的,他很看好python,所有就暗暗地记下了。曾经为了了解脚本相关的东西,拿python和shell作对比,看了两天python的基本知识,给我的印象是shell的对象化编程。这次为了做这界面,就想起了它。这次开发要求快速,适用多平台,易于维护;当...【阅读全文】