Posts by Bruno Leonardo • 26 points
1 post
-
1
votes2
answers75
viewsA: Help to find the square root of a positive Python number
You don’t need that "print" inside the input n = int(input(print('Digite um número:'))) Follows below the correct way: n = int(input('Digite um número:')) The complete code, if you want: import math…
pythonanswered Bruno Leonardo 26