Posts by ipf • 16 points
1 post
-
0
votes1
answer44
viewsA: how to take a single text from a specific line in a python txt file
Possible solution below: from random import randint while True: print('1 - ver lista de produtos\n2 - alterar quantidade\n3 - adicionar produto') opcao = int(input('opção: ')) if opcao == 1: with…