Skip to content

Commit 376d5ff

Browse files
committed
2 parents 643cd80 + fe4b5d4 commit 376d5ff

3 files changed

Lines changed: 26 additions & 14 deletions

File tree

.github/workflows/pylint.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
python -m pip install --upgrade pip
2525
pip install pylint
2626
pip install pylint flet
27+
pip install pylint flet --upgrade
2728
2829
- name: Run Pylint
2930
run: |

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[MESSAGES CONTROL]
2-
disable=C0103
2+
disable=C0103,E0611,W0123,W0702,R0402,C0116,W0718
33

44
[FORMAT]
55
max-line-length=100

README.md

Lines changed: 24 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,36 @@
66
77
⭐ Este repositório é focado exclusivamente no estudo da linguagem de programação `Python`.
88

9+
![pylint Score](https://mperlet.github.io/pybadge/badges/10.svg)
10+
[![Pylint Check](https://github.com/murillosnds/python-playground/actions/workflows/pylint.yml/badge.svg)](https://github.com/murillosnds/python-playground/actions/workflows/pylint.yml)
11+
![Python Version](https://img.shields.io/badge/python-3.13-green)
12+
913
### Projetos
1014

1115
| # | 📁 | Projetos | 🔗 |
1216
| --- | --- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
13-
| 1 | 📄 | Calculadora Iphone | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/Projetos/Calculadora%20Iphone.py) |
17+
| 1 | 📄 | Calculadora Iphone | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/Projetos/calculadora_iphone.py) |
1418

1519
### Básico
1620

1721
| # | 📁 | Básico | 🔗 |
1822
| --- | --- | ---------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
19-
| 1 | 📄 |Seu primeiro código | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/01%20%20-%20Seu%20primeiro%20script.py)
20-
| 2 | 📄 |String | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/02%20-%20String.py)
21-
| 3 | 📄 |Int | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/03%20-%20Int.py)
22-
| 4 | 📄 |Float | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/04%20-%20Float.py)
23-
| 5 | 📄 |Booleano | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/05%20-%20Booleano.py)
24-
| 6 | 📄 |Matemática | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/06%20-%20Matem%C3%A1tica.py)
25-
| 7 | 📄 |Condicionais | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/07%20-%20Condicionais.py)
26-
| 8 | 📄 |While | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/08%20-While.py)
27-
| 9 | 📄 |Continue e break | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/09%20-%20Continue%20e%20break.py)
28-
| 10 | 📄 |Funções (Range) | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/10%20-%20Fun%C3%A7%C3%B5es%20(Range).py)
29-
| 11 | 📄 |Funções (Def) | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/11%20-%20Fun%C3%A7%C3%B5es%20(Def).py)
30-
23+
| 1 | 📄 |Seu primeiro código | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/01_seu_primeiro_script.py)
24+
| 2 | 📄 |String | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/02_string.py)
25+
| 3 | 📄 |Int | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/03_int.py)
26+
| 4 | 📄 |Float | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/04_float.py)
27+
| 5 | 📄 |Booleano | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/05_booleano.py)
28+
| 6 | 📄 |Matemática | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/06_matematica.py)
29+
| 7 | 📄 |Condicionais | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/07_condicionais.py)
30+
| 8 | 📄 |While | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/08_while.py)
31+
| 9 | 📄 |Continue e break | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/09_continue_e_break.py)
32+
| 10 | 📄 |Funções (Range) | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/10_funcoes_range.py)
33+
| 11 | 📄 |Funções (Def) | [![Ver](https://img.shields.io/badge/VER-100000?style=for-the-badge&logo=VER&logoColor=white&labelColor=black&color=black)](https://github.com/murillosnds/python-playground/blob/main/B%C3%A1sico/11_funcoes_def.py)
34+
35+
## 🚀 Como executar
36+
37+
1. Clone o repositório:
38+
39+
```bash
40+
git clone https://github.com/murillosnds/python-playground.git
41+
cd python-playground

0 commit comments

Comments
 (0)