Posts by Thiago Lourenço • 9 points
1 post
-
-1
votes4
answers65
viewsQ: I cannot print a list(vector)
I’m trying to make a decimal to binary converter follow the code: n = int(input('Insira um número decimal para conversão em binário ')) cont = [] aux = 0 while n > 1: if(n % 2 == 0):…