Decorator 简化元编程
少劳多得 Decorator 与 Python 之前引入的元编程抽象有着某些共同之处:即使没有这些技术,您也一样可以实现它们所提供的功能。即使在 Python 1.5 中…
YOLOv5 在 COCO 数据集上预训练的物体检测架构和模型系列
YOLOv5 是一个在COCO数据集上预训练的物体检测架构和模型系列,它代表了 Ultralytics 对未来视觉AI方法的公开研究,其中包含了在数千小时的研究和开发…
Python Structuring Your Project(项目结构化)
By "structure" we mean the decisions you make concerning how your project best meets its objective. We need to consider how to best leverage…
Installing Python on Linux(在 Linux 上安装 Python)
The latest versions of Ubuntu and Fedora come with Python 2.7 out of the box. 最新版的Ubuntu和Fedora自带Python 2.7,直接使用。 The latest ve…
Installing Python on Windows(在 Windows 上安装 Python)
First, download the latest version of Python 2.7 from the official Website. If you want to be sure you are installing a fully up-to-date ver…
Installing Python on Mac OS X(在 Mac OS X 上安装 Python)
The latest version of Mac OS X, Mavericks, comes with Python 2.7 out of the box. 最新版的 Mac OS X 系统 Mavericks 自带 Python 2.7,可以立即…
Python Picking an Interpreter(选择解释器)
The State of Python (2 vs 3)(Python 的形势) When choosing a Python interpreter, one looming question is always present: “Should I choose …
Python 之禅 by Tim Peters
The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is …
PythonProgramming.net Python 金融教程
一、入门和获取股票数据 您好,欢迎来到 Python 金融系列教程。在本系列中,我们将使用 Pandas 框架来介绍将金融(股票)数据导入 Python 的基础知识…
使用 Python 和 Keras 逐步开发你的第一个神经网络
Keras 是一个功能强大且易于使用的 Python 库,用于开发和评估深度学习模型。它包含高效的数值计算库 Theano 和 TensorFlow,允许你使用几行代码定义…
试验性的 Numpy 教程
原文来自 Tentative NumPy Tutorial 先决条件 在阅读这个教程之前,你多少需要知道点python。如果你想重新回忆下,请看看 Python Tutorial,如果你想…
Python 计算布林带
# coding: utf-8 # 作者:Wizard import numpy as np from matplotlib import pyplot as plt import sys # 获取数据 # 因为没找到数据源,所以直接随…
用 Python 预测今后的北京高考人数
# coding: utf-8 # 作者:Wizard # 预测今后的北京高考人数 # 假设 x 年的出生人数和 (x + 18) 年的高考人数是线性关系 import numpy as np from matp…
Python 编码标准规范
1.1 Python 语言方面的准则 pychecker: 建议使用 导入模块和包: 可以,但不要 import * 完整路径导入: 可以 异常处理: 可以 全局变量: 谨慎使用 内嵌/…