Exercícios resolvidos em python


Programa para alterar o valor do indice de um vetor:
 vet = []  
while True:
x = input("Digite um numero:")
if x < 0:
break
vet.append(x)
print vet
ind = input("Dig. ind. para alterar:")
if ind >=0 and ind < len(vet):
vet[ind] = input("Digite o novo valor:")
else:
print "Esta posição ainda não existe."
print vet
Share on Google Plus

About Carlos Castro

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Blogger Comment
    Facebook Comment

0 comentários:

Postar um comentário