├── .gitignore ├── 00_codigos_diversos_sugestoes_exercicios ├── 1_exercicios.py ├── 2_exercicios_avancados.py ├── diversos1_manipulando_data_hora.py ├── exercicio10.py ├── exercicio11.py ├── exercicio12.py ├── exercicio8.py ├── exercicio9.py ├── prog1.py ├── prog2.py ├── prog3.py ├── prog4.py ├── prog5.py └── prog6.py ├── 01_documentos ├── 0_introducao.txt ├── 1-dicas_IDE_ferramentas.txt ├── 2-dicas_fluxo_git.txt ├── 3-compilacao_interpretacao.py ├── 3-exercicios_gerais.txt ├── 4-tipos_dados_python.png ├── outro │ ├── enunciado.md │ ├── main.py │ ├── metodos.py │ ├── noticia.py │ ├── noticias.csv │ └── persistencia.py └── sorteio.py ├── 02_selecao ├── 2_instrucoes_selecao.py ├── codigo_selecao1.py ├── codigo_selecao2.py ├── codigo_selecao3.py └── codigo_selecao4.py ├── 03_repeticao └── 4_instrucoes_repeticao.py ├── 04_listas ├── 10_exerciciosListaFixacao.txt ├── 11_respostas_exerciciosFixacao.py ├── 7.2_exercicios.py ├── 7_listas.py ├── 7_repeticao_listas.py ├── 8_listas_arquivo.py ├── 9_listas_arquivo_inflacao.py ├── dadosGlicemia.txt ├── fonteInflacao.dat └── nomes.txt ├── 05_orientacao_objetos ├── 1_ideia.txt ├── 2_dicas_utilidades.py ├── 3_exerciciosOO.txt ├── desafio │ ├── ata.py │ ├── enunciado.txt │ ├── main.py │ ├── menu.py │ └── usuario.py ├── oo1.py ├── oo2.py ├── prog1.py ├── prog2.py ├── prog3.py ├── prog4.py ├── receita │ ├── principal.py │ ├── receita.py │ └── tipo.py └── utilidades.py ├── 06_matplotlib ├── dados.dat ├── matplot1.py ├── matplot2.py ├── matplot3.py ├── matplot4.py ├── matplot5.py └── numpy1.py ├── 08_manipulaArquivos ├── inscritos.csv └── sistemaInscricao.py ├── 09_analisePalavrasArquivo ├── analisePalavras1.py └── resumo.txt ├── 10_oo_lista_arquivo ├── main1.py ├── oo1.py └── persistencia.py ├── 11_analise_lexica ├── analiseLexica1.py ├── analiseLexica2.py ├── analiseLexica3.py └── expressoes.csv ├── 12_requests ├── requisicao_web1.py └── requisicao_web2.py ├── README.md ├── atividades ├── atividade5 │ ├── inscricoes.dat │ ├── menu.py │ └── util.py ├── atividade6 │ ├── atividade6.md │ ├── bibliografia.txt │ ├── final.md │ ├── fonteAtividade6.dat │ └── trabalho3_extracao_bibliografia.py ├── atividade_1.md ├── atividade_2.md ├── atividade_3.py └── atividade_4.md └── trabalho2_arquivo_lista ├── dadosGlicemia.csv └── enunciadoTrabalho2.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/.gitignore -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/1_exercicios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/1_exercicios.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/2_exercicios_avancados.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/2_exercicios_avancados.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/diversos1_manipulando_data_hora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/diversos1_manipulando_data_hora.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/exercicio10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/exercicio10.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/exercicio11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/exercicio11.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/exercicio12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/exercicio12.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/exercicio8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/exercicio8.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/exercicio9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/exercicio9.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/prog1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/prog1.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/prog2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/prog2.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/prog3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/prog3.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/prog4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/prog4.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/prog5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/prog5.py -------------------------------------------------------------------------------- /00_codigos_diversos_sugestoes_exercicios/prog6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/00_codigos_diversos_sugestoes_exercicios/prog6.py -------------------------------------------------------------------------------- /01_documentos/0_introducao.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/0_introducao.txt -------------------------------------------------------------------------------- /01_documentos/1-dicas_IDE_ferramentas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/1-dicas_IDE_ferramentas.txt -------------------------------------------------------------------------------- /01_documentos/2-dicas_fluxo_git.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/2-dicas_fluxo_git.txt -------------------------------------------------------------------------------- /01_documentos/3-compilacao_interpretacao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/3-compilacao_interpretacao.py -------------------------------------------------------------------------------- /01_documentos/3-exercicios_gerais.txt: -------------------------------------------------------------------------------- 1 | https://wiki.python.org.br/ListaDeExercicios -------------------------------------------------------------------------------- /01_documentos/4-tipos_dados_python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/4-tipos_dados_python.png -------------------------------------------------------------------------------- /01_documentos/outro/enunciado.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/outro/enunciado.md -------------------------------------------------------------------------------- /01_documentos/outro/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/outro/main.py -------------------------------------------------------------------------------- /01_documentos/outro/metodos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/outro/metodos.py -------------------------------------------------------------------------------- /01_documentos/outro/noticia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/outro/noticia.py -------------------------------------------------------------------------------- /01_documentos/outro/noticias.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/outro/noticias.csv -------------------------------------------------------------------------------- /01_documentos/outro/persistencia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/outro/persistencia.py -------------------------------------------------------------------------------- /01_documentos/sorteio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/01_documentos/sorteio.py -------------------------------------------------------------------------------- /02_selecao/2_instrucoes_selecao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/02_selecao/2_instrucoes_selecao.py -------------------------------------------------------------------------------- /02_selecao/codigo_selecao1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/02_selecao/codigo_selecao1.py -------------------------------------------------------------------------------- /02_selecao/codigo_selecao2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/02_selecao/codigo_selecao2.py -------------------------------------------------------------------------------- /02_selecao/codigo_selecao3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/02_selecao/codigo_selecao3.py -------------------------------------------------------------------------------- /02_selecao/codigo_selecao4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/02_selecao/codigo_selecao4.py -------------------------------------------------------------------------------- /03_repeticao/4_instrucoes_repeticao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/03_repeticao/4_instrucoes_repeticao.py -------------------------------------------------------------------------------- /04_listas/10_exerciciosListaFixacao.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/04_listas/10_exerciciosListaFixacao.txt -------------------------------------------------------------------------------- /04_listas/11_respostas_exerciciosFixacao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/04_listas/11_respostas_exerciciosFixacao.py -------------------------------------------------------------------------------- /04_listas/7.2_exercicios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/04_listas/7.2_exercicios.py -------------------------------------------------------------------------------- /04_listas/7_listas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/04_listas/7_listas.py -------------------------------------------------------------------------------- /04_listas/7_repeticao_listas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/04_listas/7_repeticao_listas.py -------------------------------------------------------------------------------- /04_listas/8_listas_arquivo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/04_listas/8_listas_arquivo.py -------------------------------------------------------------------------------- /04_listas/9_listas_arquivo_inflacao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/04_listas/9_listas_arquivo_inflacao.py -------------------------------------------------------------------------------- /04_listas/dadosGlicemia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/04_listas/dadosGlicemia.txt -------------------------------------------------------------------------------- /04_listas/fonteInflacao.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/04_listas/fonteInflacao.dat -------------------------------------------------------------------------------- /04_listas/nomes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/04_listas/nomes.txt -------------------------------------------------------------------------------- /05_orientacao_objetos/1_ideia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/1_ideia.txt -------------------------------------------------------------------------------- /05_orientacao_objetos/2_dicas_utilidades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/2_dicas_utilidades.py -------------------------------------------------------------------------------- /05_orientacao_objetos/3_exerciciosOO.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /05_orientacao_objetos/desafio/ata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/desafio/ata.py -------------------------------------------------------------------------------- /05_orientacao_objetos/desafio/enunciado.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/desafio/enunciado.txt -------------------------------------------------------------------------------- /05_orientacao_objetos/desafio/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/desafio/main.py -------------------------------------------------------------------------------- /05_orientacao_objetos/desafio/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/desafio/menu.py -------------------------------------------------------------------------------- /05_orientacao_objetos/desafio/usuario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/desafio/usuario.py -------------------------------------------------------------------------------- /05_orientacao_objetos/oo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/oo1.py -------------------------------------------------------------------------------- /05_orientacao_objetos/oo2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/oo2.py -------------------------------------------------------------------------------- /05_orientacao_objetos/prog1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/prog1.py -------------------------------------------------------------------------------- /05_orientacao_objetos/prog2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/prog2.py -------------------------------------------------------------------------------- /05_orientacao_objetos/prog3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/prog3.py -------------------------------------------------------------------------------- /05_orientacao_objetos/prog4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/prog4.py -------------------------------------------------------------------------------- /05_orientacao_objetos/receita/principal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/receita/principal.py -------------------------------------------------------------------------------- /05_orientacao_objetos/receita/receita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/receita/receita.py -------------------------------------------------------------------------------- /05_orientacao_objetos/receita/tipo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/receita/tipo.py -------------------------------------------------------------------------------- /05_orientacao_objetos/utilidades.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/05_orientacao_objetos/utilidades.py -------------------------------------------------------------------------------- /06_matplotlib/dados.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/06_matplotlib/dados.dat -------------------------------------------------------------------------------- /06_matplotlib/matplot1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/06_matplotlib/matplot1.py -------------------------------------------------------------------------------- /06_matplotlib/matplot2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/06_matplotlib/matplot2.py -------------------------------------------------------------------------------- /06_matplotlib/matplot3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/06_matplotlib/matplot3.py -------------------------------------------------------------------------------- /06_matplotlib/matplot4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/06_matplotlib/matplot4.py -------------------------------------------------------------------------------- /06_matplotlib/matplot5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/06_matplotlib/matplot5.py -------------------------------------------------------------------------------- /06_matplotlib/numpy1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/06_matplotlib/numpy1.py -------------------------------------------------------------------------------- /08_manipulaArquivos/inscritos.csv: -------------------------------------------------------------------------------- 1 | ALE ZAM;ale@asdfsadf ;234234 2 | -------------------------------------------------------------------------------- /08_manipulaArquivos/sistemaInscricao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/08_manipulaArquivos/sistemaInscricao.py -------------------------------------------------------------------------------- /09_analisePalavrasArquivo/analisePalavras1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/09_analisePalavrasArquivo/analisePalavras1.py -------------------------------------------------------------------------------- /09_analisePalavrasArquivo/resumo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/09_analisePalavrasArquivo/resumo.txt -------------------------------------------------------------------------------- /10_oo_lista_arquivo/main1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/10_oo_lista_arquivo/main1.py -------------------------------------------------------------------------------- /10_oo_lista_arquivo/oo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/10_oo_lista_arquivo/oo1.py -------------------------------------------------------------------------------- /10_oo_lista_arquivo/persistencia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/10_oo_lista_arquivo/persistencia.py -------------------------------------------------------------------------------- /11_analise_lexica/analiseLexica1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/11_analise_lexica/analiseLexica1.py -------------------------------------------------------------------------------- /11_analise_lexica/analiseLexica2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/11_analise_lexica/analiseLexica2.py -------------------------------------------------------------------------------- /11_analise_lexica/analiseLexica3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/11_analise_lexica/analiseLexica3.py -------------------------------------------------------------------------------- /11_analise_lexica/expressoes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/11_analise_lexica/expressoes.csv -------------------------------------------------------------------------------- /12_requests/requisicao_web1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/12_requests/requisicao_web1.py -------------------------------------------------------------------------------- /12_requests/requisicao_web2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/12_requests/requisicao_web2.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/README.md -------------------------------------------------------------------------------- /atividades/atividade5/inscricoes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade5/inscricoes.dat -------------------------------------------------------------------------------- /atividades/atividade5/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade5/menu.py -------------------------------------------------------------------------------- /atividades/atividade5/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade5/util.py -------------------------------------------------------------------------------- /atividades/atividade6/atividade6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade6/atividade6.md -------------------------------------------------------------------------------- /atividades/atividade6/bibliografia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade6/bibliografia.txt -------------------------------------------------------------------------------- /atividades/atividade6/final.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade6/final.md -------------------------------------------------------------------------------- /atividades/atividade6/fonteAtividade6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade6/fonteAtividade6.dat -------------------------------------------------------------------------------- /atividades/atividade6/trabalho3_extracao_bibliografia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade6/trabalho3_extracao_bibliografia.py -------------------------------------------------------------------------------- /atividades/atividade_1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade_1.md -------------------------------------------------------------------------------- /atividades/atividade_2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade_2.md -------------------------------------------------------------------------------- /atividades/atividade_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade_3.py -------------------------------------------------------------------------------- /atividades/atividade_4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/atividades/atividade_4.md -------------------------------------------------------------------------------- /trabalho2_arquivo_lista/dadosGlicemia.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/trabalho2_arquivo_lista/dadosGlicemia.csv -------------------------------------------------------------------------------- /trabalho2_arquivo_lista/enunciadoTrabalho2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexandrezamberlan/python-basico/HEAD/trabalho2_arquivo_lista/enunciadoTrabalho2.md --------------------------------------------------------------------------------