Posts by Gustavo Santos • 3 points
1 post
-
0
votes1
answer615
viewsQ: Mean between vectors within functions (python)
Good afternoon guys, I have the following code: def Ler_vetor(): VET= []*10 for i in range(0,10): VET.append(int(input('Digite um número: '))) return VET def Escreva_vetor(VET): print('Dentro do…