Python

Python

文章 23.9k 浏览 6.0k

Decorator 简化元编程

少劳多得 Decorator 与 Python 之前引入的元编程抽象有着某些共同之处:即使没有这些技术,您也一样可以实现它们所提供的功能。即使在 Python 1.5 中…

段念尘 2023-05-17 22:13:20 109 0 0

YOLOv5 在 COCO 数据集上预训练的物体检测架构和模型系列

YOLOv5 是一个在COCO数据集上预训练的物体检测架构和模型系列,它代表了 Ultralytics 对未来视觉AI方法的公开研究,其中包含了在数千小时的研究和开发…

JSmiles 2022-09-01 22:20:50 296 0 0

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…

JSmiles 2022-05-17 12:41:35 1139 0 0

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…

JSmiles 2022-05-14 12:40:12 1266 0 0

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…

JSmiles 2022-05-02 12:38:12 1234 0 0

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,可以立即…

JSmiles 2022-04-26 12:35:34 1126 0 0

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 …

JSmiles 2022-04-25 12:34:14 1142 0 0

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 …

JSmiles 2022-04-15 12:59:38 1220 0 0

PythonProgramming.net Python 金融教程

一、入门和获取股票数据 您好,欢迎来到 Python 金融系列教程。在本系列中,我们将使用 Pandas 框架来介绍将金融(股票)数据导入 Python 的基础知识…

JSmiles 2022-04-11 22:46:24 1064 0 0

使用 Python 和 Keras 逐步开发你的第一个神经网络

Keras 是一个功能强大且易于使用的 Python 库,用于开发和评估深度学习模型。它包含高效的数值计算库 Theano 和 TensorFlow,允许你使用几行代码定义…

JSmiles 2022-04-01 21:44:22 1139 0 0

试验性的 Numpy 教程

原文来自 Tentative NumPy Tutorial 先决条件 在阅读这个教程之前,你多少需要知道点python。如果你想重新回忆下,请看看 Python Tutorial,如果你想…

JSmiles 2022-03-30 21:03:58 1260 0 0

Python 计算布林带

# coding: utf-8 # 作者:Wizard import numpy as np from matplotlib import pyplot as plt import sys # 获取数据 # 因为没找到数据源,所以直接随…

JSmiles 2022-03-30 20:45:55 1199 0 0

用 Python 预测今后的北京高考人数

# coding: utf-8 # 作者:Wizard # 预测今后的北京高考人数 # 假设 x 年的出生人数和 (x + 18) 年的高考人数是线性关系 import numpy as np from matp…

JSmiles 2022-03-30 20:44:33 1213 0 0

Python 编码标准规范

1.1 Python 语言方面的准则 pychecker: 建议使用 导入模块和包: 可以,但不要 import * 完整路径导入: 可以 异常处理: 可以 全局变量: 谨慎使用 内嵌/…

JSmiles 2022-03-01 22:34:11 1200 0 0

Python Graph 图表 数据结构

基本概念 无向图、有向图、加权图、加权有向图 边(edge)、顶点(vertex),自环、平行边 顶点的度数。子图。连通图 树是一个无环连通图,连通图的生…

JSmiles 2022-02-10 12:59:03 1229 0 0

简介

Python 由荷兰数学和计算机科学研究学会的 Guido van Rossum 于 1990 年代初设计,作为一门叫做ABC语言的替代品。Python 提供了高效的高级数据结构,还能简单有效地面向对象编程。

更多

推荐作者

书间行客

文章 0 评论 0

神妖

文章 0 评论 0

undefined

文章 0 评论 0

38169838

文章 0 评论 0

彡翼

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文