|
5 | 5 | > Essa é uma coleção de scripts Python dividida em [tópicos](#índice) que contém |
6 | 6 | exemplos de código com explicações, diferentes usos e links para outras leituras. |
7 | 7 |
|
8 | | -_Ler em_ [_English_](README.md) |
| 8 | +_Ler em_ [_English_](README.md). |
9 | 9 |
|
10 | 10 | É um **playground** porque você pode fazer alterações no código para ver como ele se comporta, |
11 | 11 | além de [testá-lo](#testando-o-código) usando asserções. Também é possível |
@@ -63,7 +63,7 @@ funciona e para saber se está escrito corretamente. |
63 | 63 | - [O que é Python](src/getting_started/what_is_python.md) |
64 | 64 | - [Sintaxe Python](src/getting_started/python_syntax.md) |
65 | 65 | - [Variáveis](src/getting_started/test_variables.py) |
66 | | -2. **Operators** |
| 66 | +2. **Operadores** |
67 | 67 | - [Operadores Aritméticos](src/operators/test_arithmetic.py) (`+`, `-`, `*`, `/`, `//`, `%`, `**`) |
68 | 68 | - [Operadores Bitwise](src/operators/test_bitwise.py) (`&`, `|`, `^`, `>>`, `<<`, `~`) |
69 | 69 | - [Operadores de Atribuição](src/operators/test_assigment.py) (`=`, `+=`, `-=`, `/=`, `//=` etc.) |
@@ -121,9 +121,9 @@ funciona e para saber se está escrito corretamente. |
121 | 121 | - [Serialization](src/standard_libraries/test_json.py) (biblioteca `json`) |
122 | 122 | - [File Wildcards](src/standard_libraries/test_glob.py) (biblioteca `glob`) |
123 | 123 | - [String Pattern Matching](src/standard_libraries/test_re.py) (biblioteca `re`) |
124 | | - - [Mathematics](src/standard_libraries/test_math.py) (bibliotecas `math`, `random` e `statistics`) |
| 124 | + - [Matemática](src/standard_libraries/test_math.py) (bibliotecas `math`, `random` e `statistics`) |
125 | 125 | - [Tempo e Datas](src/standard_libraries/test_datetime.py) (biblioteca `datetime`) |
126 | | - - [Compressão de dados](src/standard_libraries/test_zlib.py) (biblioteca `zlib`) |
| 126 | + - [Comprimindo Dados](src/standard_libraries/test_zlib.py) (biblioteca `zlib`) |
127 | 127 |
|
128 | 128 | ## Pré-requisitos |
129 | 129 |
|
@@ -209,3 +209,7 @@ flake8 ./src --statistics --show-source --count |
209 | 209 | ``` |
210 | 210 |
|
211 | 211 | [Saber mais sobre Flake8](http://flake8.pycqa.org/en/latest/) |
| 212 | + |
| 213 | +--- |
| 214 | + |
| 215 | +Traduzido por [vilmacio22](https://github.com/vilmacio22). |
0 commit comments