├── 10_RELOGIO └── app.py ├── 1_INTRO ├── .vscode │ └── settings.json ├── 1_primeiro_programa │ └── app.py └── 2_exercicio_1 │ └── app.py ├── 2_VARIVAVEIS ├── 10_exercicio_5 │ └── app.py ├── 11_operador_not │ └── app.py ├── 12_operador_and │ └── app.py ├── 13_operador_or │ └── app.py ├── 14_exercicio_6 │ └── app.py ├── 15_expressoes_logicas │ └── app.py ├── 16_exercicio_7 │ └── app.py ├── 17_exercicio_8 │ └── app.py ├── 18_exercicio_9 │ └── app.py ├── 19_variavel_texto │ └── app.py ├── 1_atribuir_valor │ └── app.py ├── 20_acessar_caracteres │ └── app.py ├── 21_concatenacao │ └── app.py ├── 22_exercicio_10 │ └── app.py ├── 23_strings_dinamicas │ └── app.py ├── 24_strings_com_float │ └── app.py ├── 25_exercicio_11 │ └── app.py ├── 26_exercicio_12 │ └── app.py ├── 27_decomposicao_string │ └── app.py ├── 28_decomposicao_p2 │ └── app.py ├── 29_exercicio_13 │ └── app.py ├── 2_exercicio_3 │ └── app.py ├── 30_input │ └── app.py ├── 31_exercicio_14 │ └── app.py ├── 32_conversao_string │ └── app.py ├── 33_exercicio_16 │ └── app.py ├── 34_exercicio_16 │ └── app.py ├── 35_exercicio_17 │ └── app.py ├── 36_exercicio_18 │ └── app.py ├── 37_erros_de_conversao │ └── app.py ├── 3_nomes_validos │ └── app.py ├── 4_valores_numericos │ └── app.py ├── 5_exercicio_4 │ └── app.py ├── 6_booleanos │ └── app.py ├── 7_op_igualdade │ └── app.py ├── 8_maior_e_menor_que │ └── app.py └── 9_maior_ou_igual │ └── app.py ├── 3_ESTRUTURA_DE_CONDICAO ├── 10_exercicio_25 │ └── app.py ├── 11_elif │ └── app.py ├── 12_exercicio_26 │ └── app.py ├── 13_exercicio_27 │ └── app.py ├── 1_trocar_pneu │ └── algoritmo.txt ├── 2_if │ └── app.py ├── 3_exercicio_20 │ └── app.py ├── 4_exercicio_21 │ └── app.py ├── 5_exercicio_22 │ └── app.py ├── 6_else │ └── app.py ├── 7_exercicio_23 │ └── app.py ├── 8_exercicio_24 │ └── app.py └── 9_if_aninhado │ └── app.py ├── 4_ESTRUTURA_DE_REPETICAO ├── 10_for │ └── app.py ├── 11_exercicio_34 │ └── app.py ├── 12_exercicio_35 │ └── app.py ├── 1_while │ └── app.py ├── 2_exercicio_28 │ └── app.py ├── 3_exercicio_29 │ └── app.py ├── 4_exercicio_30 │ └── app.py ├── 5_exercicio_31 │ └── app.py ├── 6_break │ └── app.py ├── 7_exercicio_32 │ └── app.py ├── 8_exercicio_33 │ └── app.py └── 9_repeticao_aninhada │ └── app.py ├── 5_LISTAS ├── 10_qtd_elementos │ └── app.py ├── 11_loop_com_len │ └── app.py ├── 12_exercicio_39 │ └── app.py ├── 13_append │ └── app.py ├── 14_exercicio_40 │ └── app.py ├── 15_exercicio_41 │ └── app.py ├── 16_remover_elementos │ └── app.py ├── 17_exercicio_42 │ └── app.py ├── 18_busca_lista │ └── app.py ├── 19_exercicio_43 │ └── app.py ├── 1_listas │ └── app.py ├── 20_for │ └── app.py ├── 21_exercicio_44 │ └── app.py ├── 22_range │ └── app.py ├── 23_range_incremento │ └── app.py ├── 24_exercicio_45 │ └── app.py ├── 25_maior_valor_lista │ └── app.py ├── 26_exercicio_46 │ └── app.py ├── 27_listas_com_listas │ └── app.py ├── 28_exercicio_47 │ └── app.py ├── 29_dicionarios │ └── app.py ├── 2_acessando_modificando │ └── app.py ├── 30_exercicio_48 │ └── app.py ├── 31_verificando_chaves │ └── app.py ├── 32_adicionar_deletar_dicionario │ └── app.py ├── 33_exercicio_49 │ └── app.py ├── 34_tuplas │ └── app.py ├── 35_iterando_tuplas │ └── app.py ├── 3_percorrer_lista │ └── app.py ├── 4_exercicio_36 │ └── app.py ├── 5_exercicio_37 │ └── app.py ├── 6_copia_de_lista │ └── app.py ├── 7_copia_de_lista_p2 │ └── app.py ├── 8_fatiando_listas │ └── app.py └── 9_exercicio_38 │ └── app.py ├── 6_FUNCOES ├── 10_param_opcional │ └── app.py ├── 11_exercicio_55 │ └── app.py ├── 12_param_opc_obr │ └── app.py ├── 13_funcao_como_param │ └── app.py ├── 14_exercicio_56 │ └── app.py ├── 15_seq_param │ └── app.py ├── 16_exercicio_57 │ └── app.py ├── 17_funcao_lambda │ └── app.py ├── 18_modulos │ ├── __pycache__ │ │ ├── cart.cpython-38.pyc │ │ └── funcoes.cpython-38.pyc │ ├── app.py │ ├── cart.py │ └── funcoes.py ├── 19_exercicio_58 │ ├── __pycache__ │ │ └── matematica.cpython-38.pyc │ ├── app.py │ └── matematica.py ├── 1_primeira_funcao │ └── app.py ├── 20_randint │ └── app.py ├── 21_exercicio_59 │ └── app.py ├── 2_exercicio_50 │ └── app.py ├── 3_retorno_funcao │ └── app.py ├── 4_exercicio_51 │ └── app.py ├── 5_exercicio_52 │ └── app.py ├── 6_exercicio_53 │ └── app.py ├── 7_exercicio_54 │ └── app.py ├── 8_escopo │ └── app.py └── 9_funcao_recursiva │ └── app.py ├── 7_INTRO_OOP ├── 10_metodos_magicos │ └── app.py ├── 11_prop_constante │ └── app.py ├── 12_encapsulamento │ └── app.py ├── 13_del_objetos │ └── app.py ├── 14_exercicio_64 │ └── app.py ├── 1_classe │ └── app.py ├── 2_objeto │ └── app.py ├── 3_exercicio_60 │ └── app.py ├── 4_metodos │ └── app.py ├── 5_exercicio_61 │ └── app.py ├── 6_exercicio_62 │ └── app.py ├── 7_heranca │ └── app.py ├── 8_substituicao_de_metodos │ └── app.py └── 9_exercicio_63 │ └── app.py ├── 8_STRINGS_AVANCADO ├── 1_string_para_lista │ └── app.py ├── 2_comeca_com │ └── app.py ├── 3_maiuscula_minuscula │ └── app.py ├── 4_in_not_in │ └── app.py ├── 5_count │ └── app.py ├── 6_find │ └── app.py ├── 7_split │ └── app.py ├── 8_replace │ └── app.py └── 9_is_digit │ └── app.py └── 9_JOGO_DA_FORCA ├── __pycache__ └── palavras.cpython-38.pyc ├── app.py └── palavras.py /10_RELOGIO/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/10_RELOGIO/app.py -------------------------------------------------------------------------------- /1_INTRO/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/1_INTRO/.vscode/settings.json -------------------------------------------------------------------------------- /1_INTRO/1_primeiro_programa/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/1_INTRO/1_primeiro_programa/app.py -------------------------------------------------------------------------------- /1_INTRO/2_exercicio_1/app.py: -------------------------------------------------------------------------------- 1 | print("Matheus") -------------------------------------------------------------------------------- /2_VARIVAVEIS/10_exercicio_5/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/10_exercicio_5/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/11_operador_not/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/11_operador_not/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/12_operador_and/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/12_operador_and/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/13_operador_or/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/13_operador_or/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/14_exercicio_6/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/14_exercicio_6/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/15_expressoes_logicas/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/15_expressoes_logicas/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/16_exercicio_7/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/16_exercicio_7/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/17_exercicio_8/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/17_exercicio_8/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/18_exercicio_9/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/18_exercicio_9/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/19_variavel_texto/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/19_variavel_texto/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/1_atribuir_valor/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/1_atribuir_valor/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/20_acessar_caracteres/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/20_acessar_caracteres/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/21_concatenacao/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/21_concatenacao/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/22_exercicio_10/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/22_exercicio_10/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/23_strings_dinamicas/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/23_strings_dinamicas/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/24_strings_com_float/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/24_strings_com_float/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/25_exercicio_11/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/25_exercicio_11/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/26_exercicio_12/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/26_exercicio_12/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/27_decomposicao_string/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/27_decomposicao_string/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/28_decomposicao_p2/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/28_decomposicao_p2/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/29_exercicio_13/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/29_exercicio_13/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/2_exercicio_3/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/2_exercicio_3/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/30_input/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/30_input/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/31_exercicio_14/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/31_exercicio_14/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/32_conversao_string/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/32_conversao_string/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/33_exercicio_16/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/33_exercicio_16/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/34_exercicio_16/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/34_exercicio_16/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/35_exercicio_17/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/35_exercicio_17/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/36_exercicio_18/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/36_exercicio_18/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/37_erros_de_conversao/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/37_erros_de_conversao/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/3_nomes_validos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/3_nomes_validos/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/4_valores_numericos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/4_valores_numericos/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/5_exercicio_4/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/5_exercicio_4/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/6_booleanos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/6_booleanos/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/7_op_igualdade/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/7_op_igualdade/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/8_maior_e_menor_que/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/8_maior_e_menor_que/app.py -------------------------------------------------------------------------------- /2_VARIVAVEIS/9_maior_ou_igual/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/2_VARIVAVEIS/9_maior_ou_igual/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/10_exercicio_25/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/10_exercicio_25/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/11_elif/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/11_elif/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/12_exercicio_26/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/12_exercicio_26/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/13_exercicio_27/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/13_exercicio_27/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/1_trocar_pneu/algoritmo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/1_trocar_pneu/algoritmo.txt -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/2_if/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/2_if/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/3_exercicio_20/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/3_exercicio_20/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/4_exercicio_21/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/4_exercicio_21/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/5_exercicio_22/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/5_exercicio_22/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/6_else/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/6_else/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/7_exercicio_23/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/7_exercicio_23/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/8_exercicio_24/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/8_exercicio_24/app.py -------------------------------------------------------------------------------- /3_ESTRUTURA_DE_CONDICAO/9_if_aninhado/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/3_ESTRUTURA_DE_CONDICAO/9_if_aninhado/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/10_for/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/10_for/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/11_exercicio_34/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/11_exercicio_34/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/12_exercicio_35/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/12_exercicio_35/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/1_while/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/1_while/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/2_exercicio_28/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/2_exercicio_28/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/3_exercicio_29/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/3_exercicio_29/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/4_exercicio_30/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/4_exercicio_30/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/5_exercicio_31/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/5_exercicio_31/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/6_break/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/6_break/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/7_exercicio_32/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/7_exercicio_32/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/8_exercicio_33/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/8_exercicio_33/app.py -------------------------------------------------------------------------------- /4_ESTRUTURA_DE_REPETICAO/9_repeticao_aninhada/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/4_ESTRUTURA_DE_REPETICAO/9_repeticao_aninhada/app.py -------------------------------------------------------------------------------- /5_LISTAS/10_qtd_elementos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/10_qtd_elementos/app.py -------------------------------------------------------------------------------- /5_LISTAS/11_loop_com_len/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/11_loop_com_len/app.py -------------------------------------------------------------------------------- /5_LISTAS/12_exercicio_39/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/12_exercicio_39/app.py -------------------------------------------------------------------------------- /5_LISTAS/13_append/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/13_append/app.py -------------------------------------------------------------------------------- /5_LISTAS/14_exercicio_40/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/14_exercicio_40/app.py -------------------------------------------------------------------------------- /5_LISTAS/15_exercicio_41/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/15_exercicio_41/app.py -------------------------------------------------------------------------------- /5_LISTAS/16_remover_elementos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/16_remover_elementos/app.py -------------------------------------------------------------------------------- /5_LISTAS/17_exercicio_42/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/17_exercicio_42/app.py -------------------------------------------------------------------------------- /5_LISTAS/18_busca_lista/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/18_busca_lista/app.py -------------------------------------------------------------------------------- /5_LISTAS/19_exercicio_43/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/19_exercicio_43/app.py -------------------------------------------------------------------------------- /5_LISTAS/1_listas/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/1_listas/app.py -------------------------------------------------------------------------------- /5_LISTAS/20_for/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/20_for/app.py -------------------------------------------------------------------------------- /5_LISTAS/21_exercicio_44/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/21_exercicio_44/app.py -------------------------------------------------------------------------------- /5_LISTAS/22_range/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/22_range/app.py -------------------------------------------------------------------------------- /5_LISTAS/23_range_incremento/app.py: -------------------------------------------------------------------------------- 1 | for x in range(5, 26, 5): 2 | print(x) -------------------------------------------------------------------------------- /5_LISTAS/24_exercicio_45/app.py: -------------------------------------------------------------------------------- 1 | for i in range(3, 100, 3): 2 | print(i) -------------------------------------------------------------------------------- /5_LISTAS/25_maior_valor_lista/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/25_maior_valor_lista/app.py -------------------------------------------------------------------------------- /5_LISTAS/26_exercicio_46/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/26_exercicio_46/app.py -------------------------------------------------------------------------------- /5_LISTAS/27_listas_com_listas/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/27_listas_com_listas/app.py -------------------------------------------------------------------------------- /5_LISTAS/28_exercicio_47/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/28_exercicio_47/app.py -------------------------------------------------------------------------------- /5_LISTAS/29_dicionarios/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/29_dicionarios/app.py -------------------------------------------------------------------------------- /5_LISTAS/2_acessando_modificando/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/2_acessando_modificando/app.py -------------------------------------------------------------------------------- /5_LISTAS/30_exercicio_48/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/30_exercicio_48/app.py -------------------------------------------------------------------------------- /5_LISTAS/31_verificando_chaves/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/31_verificando_chaves/app.py -------------------------------------------------------------------------------- /5_LISTAS/32_adicionar_deletar_dicionario/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/32_adicionar_deletar_dicionario/app.py -------------------------------------------------------------------------------- /5_LISTAS/33_exercicio_49/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/33_exercicio_49/app.py -------------------------------------------------------------------------------- /5_LISTAS/34_tuplas/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/34_tuplas/app.py -------------------------------------------------------------------------------- /5_LISTAS/35_iterando_tuplas/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/35_iterando_tuplas/app.py -------------------------------------------------------------------------------- /5_LISTAS/3_percorrer_lista/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/3_percorrer_lista/app.py -------------------------------------------------------------------------------- /5_LISTAS/4_exercicio_36/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/4_exercicio_36/app.py -------------------------------------------------------------------------------- /5_LISTAS/5_exercicio_37/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/5_exercicio_37/app.py -------------------------------------------------------------------------------- /5_LISTAS/6_copia_de_lista/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/6_copia_de_lista/app.py -------------------------------------------------------------------------------- /5_LISTAS/7_copia_de_lista_p2/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/7_copia_de_lista_p2/app.py -------------------------------------------------------------------------------- /5_LISTAS/8_fatiando_listas/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/8_fatiando_listas/app.py -------------------------------------------------------------------------------- /5_LISTAS/9_exercicio_38/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/5_LISTAS/9_exercicio_38/app.py -------------------------------------------------------------------------------- /6_FUNCOES/10_param_opcional/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/10_param_opcional/app.py -------------------------------------------------------------------------------- /6_FUNCOES/11_exercicio_55/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/11_exercicio_55/app.py -------------------------------------------------------------------------------- /6_FUNCOES/12_param_opc_obr/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/12_param_opc_obr/app.py -------------------------------------------------------------------------------- /6_FUNCOES/13_funcao_como_param/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/13_funcao_como_param/app.py -------------------------------------------------------------------------------- /6_FUNCOES/14_exercicio_56/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/14_exercicio_56/app.py -------------------------------------------------------------------------------- /6_FUNCOES/15_seq_param/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/15_seq_param/app.py -------------------------------------------------------------------------------- /6_FUNCOES/16_exercicio_57/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/16_exercicio_57/app.py -------------------------------------------------------------------------------- /6_FUNCOES/17_funcao_lambda/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/17_funcao_lambda/app.py -------------------------------------------------------------------------------- /6_FUNCOES/18_modulos/__pycache__/cart.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/18_modulos/__pycache__/cart.cpython-38.pyc -------------------------------------------------------------------------------- /6_FUNCOES/18_modulos/__pycache__/funcoes.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/18_modulos/__pycache__/funcoes.cpython-38.pyc -------------------------------------------------------------------------------- /6_FUNCOES/18_modulos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/18_modulos/app.py -------------------------------------------------------------------------------- /6_FUNCOES/18_modulos/cart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/18_modulos/cart.py -------------------------------------------------------------------------------- /6_FUNCOES/18_modulos/funcoes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/18_modulos/funcoes.py -------------------------------------------------------------------------------- /6_FUNCOES/19_exercicio_58/__pycache__/matematica.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/19_exercicio_58/__pycache__/matematica.cpython-38.pyc -------------------------------------------------------------------------------- /6_FUNCOES/19_exercicio_58/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/19_exercicio_58/app.py -------------------------------------------------------------------------------- /6_FUNCOES/19_exercicio_58/matematica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/19_exercicio_58/matematica.py -------------------------------------------------------------------------------- /6_FUNCOES/1_primeira_funcao/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/1_primeira_funcao/app.py -------------------------------------------------------------------------------- /6_FUNCOES/20_randint/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/20_randint/app.py -------------------------------------------------------------------------------- /6_FUNCOES/21_exercicio_59/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/21_exercicio_59/app.py -------------------------------------------------------------------------------- /6_FUNCOES/2_exercicio_50/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/2_exercicio_50/app.py -------------------------------------------------------------------------------- /6_FUNCOES/3_retorno_funcao/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/3_retorno_funcao/app.py -------------------------------------------------------------------------------- /6_FUNCOES/4_exercicio_51/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/4_exercicio_51/app.py -------------------------------------------------------------------------------- /6_FUNCOES/5_exercicio_52/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/5_exercicio_52/app.py -------------------------------------------------------------------------------- /6_FUNCOES/6_exercicio_53/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/6_exercicio_53/app.py -------------------------------------------------------------------------------- /6_FUNCOES/7_exercicio_54/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/7_exercicio_54/app.py -------------------------------------------------------------------------------- /6_FUNCOES/8_escopo/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/8_escopo/app.py -------------------------------------------------------------------------------- /6_FUNCOES/9_funcao_recursiva/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/6_FUNCOES/9_funcao_recursiva/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/10_metodos_magicos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/10_metodos_magicos/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/11_prop_constante/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/11_prop_constante/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/12_encapsulamento/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/12_encapsulamento/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/13_del_objetos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/13_del_objetos/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/14_exercicio_64/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/14_exercicio_64/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/1_classe/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/1_classe/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/2_objeto/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/2_objeto/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/3_exercicio_60/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/3_exercicio_60/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/4_metodos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/4_metodos/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/5_exercicio_61/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/5_exercicio_61/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/6_exercicio_62/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/6_exercicio_62/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/7_heranca/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/7_heranca/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/8_substituicao_de_metodos/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/8_substituicao_de_metodos/app.py -------------------------------------------------------------------------------- /7_INTRO_OOP/9_exercicio_63/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/7_INTRO_OOP/9_exercicio_63/app.py -------------------------------------------------------------------------------- /8_STRINGS_AVANCADO/1_string_para_lista/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/8_STRINGS_AVANCADO/1_string_para_lista/app.py -------------------------------------------------------------------------------- /8_STRINGS_AVANCADO/2_comeca_com/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/8_STRINGS_AVANCADO/2_comeca_com/app.py -------------------------------------------------------------------------------- /8_STRINGS_AVANCADO/3_maiuscula_minuscula/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/8_STRINGS_AVANCADO/3_maiuscula_minuscula/app.py -------------------------------------------------------------------------------- /8_STRINGS_AVANCADO/4_in_not_in/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/8_STRINGS_AVANCADO/4_in_not_in/app.py -------------------------------------------------------------------------------- /8_STRINGS_AVANCADO/5_count/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/8_STRINGS_AVANCADO/5_count/app.py -------------------------------------------------------------------------------- /8_STRINGS_AVANCADO/6_find/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/8_STRINGS_AVANCADO/6_find/app.py -------------------------------------------------------------------------------- /8_STRINGS_AVANCADO/7_split/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/8_STRINGS_AVANCADO/7_split/app.py -------------------------------------------------------------------------------- /8_STRINGS_AVANCADO/8_replace/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/8_STRINGS_AVANCADO/8_replace/app.py -------------------------------------------------------------------------------- /8_STRINGS_AVANCADO/9_is_digit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/8_STRINGS_AVANCADO/9_is_digit/app.py -------------------------------------------------------------------------------- /9_JOGO_DA_FORCA/__pycache__/palavras.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/9_JOGO_DA_FORCA/__pycache__/palavras.cpython-38.pyc -------------------------------------------------------------------------------- /9_JOGO_DA_FORCA/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/9_JOGO_DA_FORCA/app.py -------------------------------------------------------------------------------- /9_JOGO_DA_FORCA/palavras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matheusbattisti/algoritmos_e_logica_python/HEAD/9_JOGO_DA_FORCA/palavras.py --------------------------------------------------------------------------------