Posts by T.S.F • 1 point
1 post
-
0
votes6
answers65891
viewsA: How to convert a string variable to int?
You could set the int value for the input from the beginning: n1 = int(input("informe um número ")) n2 = int(input("informe um número ")) soma = n1 + n2 print ("O resultado da soma de ", soma) or…