forked from zedr/clean-code-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME-Persian.md
More file actions
39 lines (33 loc) · 1.76 KB
/
README-Persian.md
File metadata and controls
39 lines (33 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# کد تمیز در پایتون
[](https://travis-ci.com/zedr/clean-code-python)
[](https://www.python.org/download/releases/3.8.3/)
## فهرست مطالب
1. [مقدمه](##مقدمه)
2. [متغیرها](##)
3. [تابعها](##)
4. [شیها و ساختمان داده](##)
5. [کلاسها](##)
1. [S: قاعده تک وظیفهای (SRP)](##)
2. [O: قاعده باز و بسته (OCP)](##)
3. [L: قاعده جایگزینی لیسکوف (LSP)](##)
4. [I: قاعده جداسازی رابط (ISP)](##)
5. [D: قاعده وارونگی وابستگی (DIP)](##)
6. [خودت را تکرار نکن](##)
7. [ترجمه](##)
## مقدمه
# clean-code-python
[](https://travis-ci.com/zedr/clean-code-python)
[](https://www.python.org/download/releases/3.8.3/)
## Table of Contents
1. [Introduction](#introduction)
2. [Variables](#variables)
3. [Functions](#functions)
4. [Objects and Data Structures](#objects-and-data-structures)
5. [Classes](#classes)
1. [S: Single Responsibility Principle (SRP)](#single-responsibility-principle-srp)
2. [O: Open/Closed Principle (OCP)](#openclosed-principle-ocp)
3. [L: Liskov Substitution Principle (LSP)](#liskov-substitution-principle-lsp)
4. [I: Interface Segregation Principle (ISP)](#interface-segregation-principle-isp)
5. [D: Dependency Inversion Principle (DIP)](#dependency-inversion-principle-dip)
6. [Don't repeat yourself (DRY)](#dont-repeat-yourself-dry)
7. [Translation](#translation)