Posts by Lucas Rocha • 25 points
2 posts
-
-1
votes1
answer71
viewsQ: How to get a correct value using the point?
preco_casa = float (input("Qual o preço do imóvel?")) seu_salario = input("Qual o seu salário mensal?:") anos_a_pagar = input("Quantidade de anos a pagar pelo imóvel:") valor_prestacao = preco_casa…
-
0
votes2
answers798
viewsA: python - Delete string end characters
Another way would be to slice it up, get like this: a_fatiado = (a[0:8]) similar way the first solution presented but without using the 'Len' function'.