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

PyCharm: PyCharm 2017.1 EAP 9 (build 171.3691.3)

We’re getting closer to the release of PyCharm 2017.1, and you can already get this week’s preview version from our Early Access Program (EAP) page.Get the EAP now! This week we’ve included one small...

View Article


Generating Sequences

A virtual container. Generating Sequences ByAnthony Williams From the article: I was having a discussion with my son over breakfast about C++ and python, and he asked me if C++ had anything equivalent...

View Article


Parsing fixed-width files in Python

I have some census data in a fixed width format I’d like to parse. Stuff like “columns 23-26 are the year in 4 digit form”. It’s easy enough to ad hoc parse this with string slicing. But by the time...

View Article

#100 Python past, present, and future with Guido van Rossum

Welcome to a very special episode. This is the 100th episode of Talk python To Me. It's the perfect chance to take a moment and look at where we have come from, and where we are going. Not just with...

View Article

python中函数介绍

斐波拉希数列 >>> fibs [0, 1] >>> n=input('How many Fibonacci numbers do your what?') How many Fibonacci numbers do your what?10 >>> for n in range(n-2):...

View Article


Image may be NSFW.
Clik here to view.

python 自动化运维模块收集

一、汇总了《python 自动化运维技术与最佳实践》常见模块,分别为: psutil : 系统性能、资源、进程类的管理...

View Article

AI学习之路(14): 张量的平方计算

tf.square(x, name=None) 计算 x 的平方,像 (y = x * x = x^2) 。 参数 : x: 一个张量或者 SparseTensor 。必须有下面之一的类型: half, float32, float64, int32, int64, complex64, complex128. name: 操作的名称 . 返回值 : 张量或者 SparseTensor. 与 x...

View Article

Image may be NSFW.
Clik here to view.

The Keyboard Maestro scripting environment

March 1, 2017 at 8:10 PM by Dr. Drang Friend of the blog Jason Verly was up late a couple of nights ago, trying to get eitherSnapClip orSnapSCP working. The embedded python script was crapping out very...

View Article


Image may be NSFW.
Clik here to view.

如何才能进入数据孵化器中心

我们 数据孵化器中心 收到成千上万份想要加入我们数据分析协会的申请。我们的要求非常高,以致于经常有人问我们以下问题:“我要怎么做才能加入你们的数据分析协会呢?” 接下来我将介绍我们最看重的五个技能以及相应的学习资源,虽然我们并不要求申请者同时拥有这些技能,但是大多数申请人需要掌握大部分的技能。 爬虫技术 互联网上有许多数据,你需要学习如何获取它们。不管它们的格式是 JSON,HTML...

View Article


Image may be NSFW.
Clik here to view.

Sentry 8.14.0 发布,Python 实时日志平台

Sentry 是一个实时的事件日志和聚合平台,基于Django构建。 Sentry 可以帮助你将 python 程序的所有 exception 自动记录下来,然后在一个好用的 UI 上呈现和搜索。处理 exception 是每个程序的必要部分,所以 Sentry 也几乎可以说是所有项目的必备组件。 Sentry 8.14.0 更新内容: Added new internal processing...

View Article

Image may be NSFW.
Clik here to view.

python脚本获取命令行参数的方法(汇总)

介绍python脚本获取命令行参数的方法:getopt模和argparse模块。 python版本:2.7 一、getopt模块 主要用到了模块中的函数: options, args = getopt.getopt(args, shortopts, longopts=[]) 参数args:一般是sys.argv[1:]。过滤掉sys.argv[0],它是执行脚本的名字,不算做命令行参数。...

View Article

Image may be NSFW.
Clik here to view.

Python发射导弹的正确方式

python发射导弹的正确方式 一点号中国统计网昨天 戳上面的蓝字关注我们哦!――此文以纪念南京大屠杀79周年...

View Article

Image may be NSFW.
Clik here to view.

代码这样写更优雅(Python 版)

题图:unsplash.com python 这门语言最大的优点之一就是语法简洁,好的代码就像伪代码一样,干净、整洁、一目了然。但有时候我们写代码,特别是 Python 初学者,往往还是按照其它语言的思维习惯来写,那样的写法不仅运行速度慢,代码读起来也费尽,给人一种拖泥带水的感觉,过段时间连自己也读不懂。 《计算机程序的构造和解释》的作者哈尔阿伯尔森曾这样说:“Programs must be...

View Article


Image may be NSFW.
Clik here to view.

利用回归模型预测数值型数据

回归 机器学习算法按照目标变量的类型,分为标称型数据和连续型数据。标称型数据类似于标签型的数据,而对于它的预测方法称为分类,连续型数据类似于预测的结果为一定范围内的连续值,对于它的预测方法称为回归。 含义 “回归”一词比较晦涩,下面说一下这个词的来源: “回归”一词是由达尔文的表兄弟Francis...

View Article

Image may be NSFW.
Clik here to view.

关于WEB敏感文件探测的一点思考

场景 目录/文件fuzz是渗透测试中的重要部分,各SRC中因为 .svn/.git 文件泄露源码而被攻破的案例很常见,同时也是CTF中经常出现的需求。 “据我长期观察,50%的CTF题目打开都是一个登陆页面,而其中又有60%的可以用各种方式拿到源码。” ――P神 枚举类工具 用过的一些相关工具 https://github.com/lijiejie/BBScan...

View Article


Image may be NSFW.
Clik here to view.

python, week 5

i used code from here to put all the words from the first executive order into a set, which is a way to get all the unique words in the document. ## from allison parrish's...

View Article

Image may be NSFW.
Clik here to view.

Python开发影响各领域 奇酷学院为开发人才而生!

python开发影响各领域 奇酷学院为开发人才而生! 一点号奇酷学院4小时前 Python不仅仅是一个设计优秀的程序语言,它能够完成现实中的各种任务,你可以在任何场合应用Python,从网站和游戏开发到机器人和航天飞机控制。尽管如此,Python的应用领域分为下面几类,下文将介绍一些Python具体能帮我们做的事情。php?url=0Fm57poYJg" alt="Python开发影响各领域...

View Article


谷歌开源 Python Fire;一张图读懂 Python、R 的大数据应用等 | AI 开发者头条

谷歌开源 python Fire;一张图读懂 Python、R 的大数据应用等 | AI 开发者头条 3小时前来源:雷锋网 ▲ 内容预览: 谷歌开源 Python Fire NASA 发布 2017-2018 软件目录,供开发者免费使用 一张图看懂大数据中 R 语言的应用 一张图看懂大数据中 Python 的应用 每日推荐阅读 谷歌搜索技术分析,如何一步步实现“不止于关键词”? %

View Article

Deal: Python 3 Bootcamp Bundle for $41 3/2/17

Those of that are developers out there are going to love this bundle. It’s a python 3 Bootcamp bundle, and there’s a load of great courses in here to help you learn everything that you need to know...

View Article

使同一个server上不同port的django应用可在同一个浏览器上打开

如果我们有两个django应用site1和site2同时跑在同一个server的不同端口,同时我们在同一个浏览器的不同tab登录。那么这时就出出现这种情况,当我们登录site2时就会将site1上登录的用户踢下来。...

View Article
Browsing all 9596 articles
Browse latest View live