Posts by Kappa • 79 points
4 posts
-
4
votes2
answers2703
viewsQ: How to skip the line in writing the files?
Well, basically, I need to skip a line, after certain writing. insira o código aqui print("+---------------------+") print("|DEMONSTRAÇÃO DA LINHA|") print("+---------------------+") print()…
-
1
votes2
answers2421
viewsQ: Python problem in sublime text
Well, guys, I’m having a problem when I put my python code in sublime text to run. The problem is, the code doesn’t work, just compile and nothing else. In case, it is not running any line (trying…
-
2
votes2
answers310
viewsQ: Problem on condition when checking if user typed "n", "N", "s" or "S"
print("--------------------") print("CALCULADORA DE MÉDIA") print("--------------------") print() #Primeira nota v1 = float(input("Digite a primeira nota: ")) #Segunda nota v2 = float(input("Digite…
-
0
votes1
answer143
viewsQ: What’s wrong with my code?
algoritmo "Calculadora" Var num1, num2, r: real operacao: caractere inicio EscrevaL("Digite: ") leia(num1, operacao, num2) caso operacao "+" r <- num1 + num2 caso operacao "-" r <- num1 - num2…