0
I want to remove two values from a list. Of type I have an array:
vet[0]*3
for i in range(3):
vet[i]=input('Digite um valor: ')
I want to remove as much and as little as possible. How do I?
I’ve tried to do vet.remove(max(vet))
, but it can’t be.