Posts by xxxLunaxxx • 7 points
2 posts
-
-3
votes1
answer66
viewsQ: PRINT command is set to INVALID SYNTAX in Python
I’m doing a simple exercise in python and I don’t understand the reason for my mistake. num1 = (int(input("Digite o primeiro número")) print("Digite a operação desejada, sendo:") print("* -->…
-
0
votes0
answers162
viewsQ: What is the input(). split(" ") for in python?
I’m solving some exercises in python and when I put the code this way: A = float(input("")) B = float(input("")) C = float(input("")) triangulo = float((A*C)/2) circulo = float(3.14159*(C**2))…