fix(guide): simplify directory structure

This commit is contained in:
Mrugesh Mohapatra
2018-10-16 21:26:13 +05:30
parent f989c28c52
commit da0df12ab7
35752 changed files with 0 additions and 317652 deletions

View File

@ -0,0 +1,17 @@
---
title: Classes
localeTitle: 类
---
## 类
类是创建对象的“蓝图”:编写类允许描述属性和行为公共到该类的每个实例。
## 创建一个类
要定义类,请使用关键字**类** ,后跟定义类的名称和冒号。以下所有行(描述属性和行为/方法的代码) - 在Python函数中缩进。例如要创建一个名为Person的类我们可以编写
`class Person: <code describing attributes and behaviors/methods>`
类定义必须在它们产生任何影响之前执行。
#### 更多信息:

View File

@ -0,0 +1,11 @@
---
title: Constructors
localeTitle: 构造函数
---
## 构造函数
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/area-of-a-parallelogram/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息:

View File

@ -0,0 +1,16 @@
---
title: Python Object Oriented Programming
localeTitle: 面向对象的Python编程
---
## 面向对象的Python编程
Python是一种支持不同编程方法的多范式编程语言。一种优秀的编程范例是面向对象编程或简称OOP通过创建对象。
在OOP中属性和行为被捆绑到单个对象中其特征如下
* 属性
* 行为
例如,一个对象可以代表具有属性的人,如姓名,年龄,地址,行走,说话,呼吸和跑步等行为。
OOP将现实世界的实体建模为软件对象它们具有与之相关的一些数据并且可以执行某些功能。对象被建模为**类** 这是一种_蓝图_ 。

View File

@ -0,0 +1,11 @@
---
title: Inheritance
localeTitle: 遗产
---
## 遗产
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/area-of-a-parallelogram/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息:

View File

@ -0,0 +1,11 @@
---
title: Methods
localeTitle: 方法
---
## 方法
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/area-of-a-parallelogram/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息:

View File

@ -0,0 +1,11 @@
---
title: Operator Overloading
localeTitle: 运算符重载
---
## 运算符重载
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/area-of-a-parallelogram/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息:

View File

@ -0,0 +1,11 @@
---
title: Special Comparison Methods
localeTitle: 特殊比较方法
---
## 特殊比较方法
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/area-of-a-parallelogram/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息:

View File

@ -0,0 +1,11 @@
---
title: Special Formatting Methods
localeTitle: 特殊格式化方法
---
## 特殊格式化方法
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/area-of-a-parallelogram/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息:

View File

@ -0,0 +1,11 @@
---
title: Special Iteration Methods
localeTitle: 特殊迭代方法
---
## 特殊迭代方法
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/area-of-a-parallelogram/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息:

View File

@ -0,0 +1,11 @@
---
title: Static Variables
localeTitle: 静态变量
---
## 静态变量
这是一个存根。 [帮助我们的社区扩展它](https://github.com/freecodecamp/guides/tree/master/src/pages/mathematics/area-of-a-parallelogram/index.md) 。
[这种快速风格指南有助于确保您的拉取请求被接受](https://github.com/freecodecamp/guides/blob/master/README.md) 。
#### 更多信息: