├── README.md ├── dia01 ├── exercicios │ ├── ex1.1.py │ ├── ex1.2.py │ ├── ex1.3.py │ ├── ex1.4.py │ ├── ex1.5.py │ └── ex1.6.py ├── numeros.py ├── ola.py └── variaveis.py ├── dia02 ├── exercicios │ ├── ex1.7.py │ ├── ex1.8.py │ ├── ex2.10.py │ ├── ex2.11.py │ ├── ex2.14.py │ ├── ex2.7.py │ └── ex2.8.py ├── for.py ├── if.py └── while.py ├── dia03 ├── ex2.12.py ├── ex2.13.py ├── ex2.15.py ├── ex2.2.py ├── ex2.3.py ├── ex2.4.py ├── ex2.6.py ├── ex2.9.py ├── listas.py ├── strings.py └── tuplas.py ├── dia04 ├── dicionarios.py ├── exercicios │ ├── ex2.11.py │ ├── ex2.5.py │ └── par_impar.py └── funcoes.py ├── dia05 ├── arquivos.py ├── bibliotecas.py ├── dados.csv ├── meu_arquivo.txt ├── web_scrap.py └── wiki_brasil.txt └── loteria_babilonia.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/README.md -------------------------------------------------------------------------------- /dia01/exercicios/ex1.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia01/exercicios/ex1.1.py -------------------------------------------------------------------------------- /dia01/exercicios/ex1.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia01/exercicios/ex1.2.py -------------------------------------------------------------------------------- /dia01/exercicios/ex1.3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia01/exercicios/ex1.3.py -------------------------------------------------------------------------------- /dia01/exercicios/ex1.4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia01/exercicios/ex1.4.py -------------------------------------------------------------------------------- /dia01/exercicios/ex1.5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia01/exercicios/ex1.5.py -------------------------------------------------------------------------------- /dia01/exercicios/ex1.6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia01/exercicios/ex1.6.py -------------------------------------------------------------------------------- /dia01/numeros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia01/numeros.py -------------------------------------------------------------------------------- /dia01/ola.py: -------------------------------------------------------------------------------- 1 | # %% 2 | 3 | print("Olá, mundo!!") -------------------------------------------------------------------------------- /dia01/variaveis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia01/variaveis.py -------------------------------------------------------------------------------- /dia02/exercicios/ex1.7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia02/exercicios/ex1.7.py -------------------------------------------------------------------------------- /dia02/exercicios/ex1.8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia02/exercicios/ex1.8.py -------------------------------------------------------------------------------- /dia02/exercicios/ex2.10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia02/exercicios/ex2.10.py -------------------------------------------------------------------------------- /dia02/exercicios/ex2.11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia02/exercicios/ex2.11.py -------------------------------------------------------------------------------- /dia02/exercicios/ex2.14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia02/exercicios/ex2.14.py -------------------------------------------------------------------------------- /dia02/exercicios/ex2.7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia02/exercicios/ex2.7.py -------------------------------------------------------------------------------- /dia02/exercicios/ex2.8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia02/exercicios/ex2.8.py -------------------------------------------------------------------------------- /dia02/for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia02/for.py -------------------------------------------------------------------------------- /dia02/if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia02/if.py -------------------------------------------------------------------------------- /dia02/while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia02/while.py -------------------------------------------------------------------------------- /dia03/ex2.12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/ex2.12.py -------------------------------------------------------------------------------- /dia03/ex2.13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/ex2.13.py -------------------------------------------------------------------------------- /dia03/ex2.15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/ex2.15.py -------------------------------------------------------------------------------- /dia03/ex2.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/ex2.2.py -------------------------------------------------------------------------------- /dia03/ex2.3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/ex2.3.py -------------------------------------------------------------------------------- /dia03/ex2.4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/ex2.4.py -------------------------------------------------------------------------------- /dia03/ex2.6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/ex2.6.py -------------------------------------------------------------------------------- /dia03/ex2.9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/ex2.9.py -------------------------------------------------------------------------------- /dia03/listas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/listas.py -------------------------------------------------------------------------------- /dia03/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/strings.py -------------------------------------------------------------------------------- /dia03/tuplas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia03/tuplas.py -------------------------------------------------------------------------------- /dia04/dicionarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia04/dicionarios.py -------------------------------------------------------------------------------- /dia04/exercicios/ex2.11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia04/exercicios/ex2.11.py -------------------------------------------------------------------------------- /dia04/exercicios/ex2.5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia04/exercicios/ex2.5.py -------------------------------------------------------------------------------- /dia04/exercicios/par_impar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia04/exercicios/par_impar.py -------------------------------------------------------------------------------- /dia04/funcoes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia04/funcoes.py -------------------------------------------------------------------------------- /dia05/arquivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia05/arquivos.py -------------------------------------------------------------------------------- /dia05/bibliotecas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia05/bibliotecas.py -------------------------------------------------------------------------------- /dia05/dados.csv: -------------------------------------------------------------------------------- 1 | nome;idade 2 | teo;30 3 | nah;32 4 | maria;1 5 | juninho;2 6 | pamela;67 7 | -------------------------------------------------------------------------------- /dia05/meu_arquivo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia05/meu_arquivo.txt -------------------------------------------------------------------------------- /dia05/web_scrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia05/web_scrap.py -------------------------------------------------------------------------------- /dia05/wiki_brasil.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/dia05/wiki_brasil.txt -------------------------------------------------------------------------------- /loteria_babilonia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TeoMeWhy/introducao-programacao-python/HEAD/loteria_babilonia.py --------------------------------------------------------------------------------