-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcs6.py
40 lines (28 loc) · 902 Bytes
/
cs6.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import os
List = []
while True:
print('Selecione uma opção')
opcao = input('[i]nserir [a]pagar [l]istar: ')
if opcao == 'i':
os.system('clear')
valor = input('Valor: ')
list.append(valor)
elif opcao == 'a':
indice_str = input('Escolha o índice para apagar: ')
try:
indice = int(indice_str)
del list[indice]
except ValueError:
print('Não foi possivel achar esse indice.')
except IndexError:
print('Indice não existe na lista')
except Exception:
print('Erro desconhecido')
elif opcao == 'l':
os.system('clear')
if len(list) == 0:
print('Nada para listar')
for i, valor in enumerate(list):
print(i, valor)
else:
print('Escolha uma opção: "i", "a" ou "l" por favor.')