Quantcast
Channel: CodeSection,代码区,Python开发技术文章_教程 - CodeSec
Browsing all 9596 articles
Browse latest View live

Image may be NSFW.
Clik here to view.

Data Science Job Report 2017: R Passes SAS, But Python Leaves Them Both Behind

I’ve just updated another section of The Popularity of Data Science Software . It is reproduced below to save you the trouble of reading the entire article.If your organization is looking for training...

View Article


How to start a Data Science project in Python

Many blog posts show complicated machine learning methods and cutting edge technologies, putting Data Scientists around the world in a constant state of FOMO . But what are the fundamentals? How...

View Article


Image may be NSFW.
Clik here to view.

LRU算法及Python实现

面试的过程中被问到”最近最少使用算法”,然后就懵逼了,最后面试官说这就是LRU(Least Recently Used)我才恍然大悟,哦,听说过这个算法,但是..自己不会…。所以这篇文章主要就是以攻破LRU以及python实现为主。 一.概述 这个算法出现在操作系统内存管理上,因为内存是有限且珍贵的,如何更大更高效利用内存呢?就出现了一种 虚拟内存...

View Article

Python readline module

GNU readline 库提供了一些函数供程序调用,来允许用户修改他们键入的命令。通过这个库可以达到以下目的 1) <TAB> 补全 2) ↑ 或 ↓ 浏览历史命令 ... python 的 readline 模块 对这个库进行了一层封装 通过文档可以得知其基本用法,下面举几个小例子 补全 import time import readline class...

View Article

终端下Python镜像源管理工具pprm

我们在使用python做开发的时候,常常会用到第三方库,.虽然用easy_install和pip来安装第三方库很方便,但默认的第三方库是从Python的 官方源 下载的,因为某些原因,官方的网站访问时快时慢,很不稳定,有时候也直接打不开了,网上可以找一些国内的镜像源可以做为替换,通过修改配置文件( ~/.pip/pip.conf...

View Article


Python标准库:functools模块函数解析

python自带的 functools 模块提供了一些常用的高阶函数,也就是用于处理其它函数的特殊函数。换言之,就是能使用该模块对可调用对象进行处理。 functools模块函数概览 functools.cmp to key(func) functools.total_ordering(cls) functools.reduce(function, iterable[, initializer])...

View Article

Image may be NSFW.
Clik here to view.

Python数据结构之旋转链表

题目描述:给定一个链表,旋转链表,使得每个节点向右移动k个位置,其中k是一个非负数 样例:给出链表1->2->3->4->5->null和k=2;返回4->5->1->2->3->null...

View Article

Image may be NSFW.
Clik here to view.

忘记12306!用 Python3 实现自己的火车票查看器!

课程简介: 使用 python3 抓取 12306 网站信息提供一个命令行的火车票查询工具。通过该项目的实现,可以熟悉 Python3 基础及网络编程,以及 docopt,requests,prettytable 等库的使用。 项目由 小蜗牛 发布在 实验楼 ,项目在线练习地址: Python3 实现火车票查询工具 ,可以直接在教程中下载代码使用demo。 一、实验简介...

View Article


QueueLogger and Python JSON Logger

Solution #2: Subclass QueueHandler The second solution is it to subclass logutils.queue.QueueHandler as follows and add pickling support for exc_info via tblib : # Bring in support for...

View Article


Image may be NSFW.
Clik here to view.

微群分享:初学必看,Python入门基础

为了帮助希望学习python编程,对技术感兴趣的同学快速成长,CSDN特向广大Python爱好者开设了学习班。前期我们在班中做了调查,发现有不少同学还处于入门阶段,对于如何学习Python还一筹莫展。所以在2月的最后一天,我们邀请了第二位CSDN博客专家杨秀璋走进“CSDN Python学习班”的三个群,为大家分享了Python入门课程。...

View Article

Vasudev Ram: Show error numbers and codes from the os.errno module

By Vasudev Ram While browsing the python standard library docs, in particular the module os.errno , I got the idea of writing this small utility to display os.errno error codes and error names, which...

View Article

Image may be NSFW.
Clik here to view.

[TPYBoard-Micropython之会python就能做硬件 7] 学习使用蓝牙模块及舵机

转载请注明:@小五义 http://www.cnblogs.com/xiaowuyi 欢迎加入讨论群 64770604 一、实验器材 1、TPYboardV102板 一块 2、无线蓝牙串口透传模块 HC-06 一个 3、OLED屏 一块 二、无线蓝牙串口透传模块...

View Article

Learn to develop mobile apps with Python and save over 90% [DEALS]

Want to train for a new career but don’t have time to attend college? Learn to be a professional computer programmer on your own schedule with the python 3 Bootcamp Bundle . It’s offered at more than...

View Article


Image may be NSFW.
Clik here to view.

Python模拟弹道轨迹

python模拟弹道轨迹 一点号中国统计网4小时前 php?url=0Flb0g61B0" alt="Python模拟弹道轨迹" />最近美国把萨德系统部署到韩国,一时心血来潮就用python模拟最简单的弹道轨迹。希望能帮助各位初学者学习python数学建模和matplotlib动态可视化模拟。...

View Article

Image may be NSFW.
Clik here to view.

Thanks to PYPTUG!

Thanks to PYPTUG, the python Piedmont Triad Users Group , forinviting me to speak at their monthly meeting last night! I gave a slightly expanded version of the talk I gave at PyData Carolinas 2016...

View Article


Image may be NSFW.
Clik here to view.

PyPy Development: Async HTTP benchmarks on PyPy3

We are almost ready to release an alpha version of PyPy 3.5. Our goal is to release it shortly after the sprint. Many modules have already been ported and it can probably run many python 3 programs...

View Article

PyBites: Pythonic String Formatting

Formatting strings was one of the things that really hurt my head when I started learning python. Everyone did it differently! After doing Michael Kennedy's Write Pythonic Code Like a Seasoned...

View Article


关于requirements.txt的一切

大部分python项目都会有一个 requirements.txt ,用来记录项目的依赖。主要的写法如下所示 pip freeze > requirements.txt # 生成requirements.txt pip install -r requirements.txt # 从requirements.txt安装依赖 支持的写法 -r base.txt # base.txt下面的所有包...

View Article

学习scapy

不久前才知道scapy这个工具,相见恨晚。其强大在于可以修改数据包,基于python,使用更加方便。 真正开始研究TCP/IP是在半年前,本人不才,拿着FreeRTOS-TCP/IP源码看了个把月,仍然迷茫,好在TCP/IP协议部分明白了很多。 一个月前接触Python,目前正在慢慢熟悉。 Ubuntu14.04安装scapy...

View Article

Python的排序:关于sort()与sorted()

list.sort() list的一个方法,具有三个参数:cmp,key,reverse(python3只有后两个) 一个list调用sort方法后,对该list进行排序,不保存原list 参数解释: cmp (仅支持Python2) : 比较函数,可以自定义,如cmp = lambda x,y:y-x; cmp = cmp(x,y) key :...

View Article
Browsing all 9596 articles
Browse latest View live