Posts by Marcos Facini • 53 points
2 posts
-
2
votes1
answer60
viewsQ: What’s the difference between using input() and using sys.stdin.readline()?
What’s the difference between using the input() and use sys.stdin.readline()?
-
3
votes1
answer56
viewsQ: Doubt with the counter at the while
Analyzing this code that serves to calculate arithmetic progression and that is working correctly: primeiro_termo = int (input ('Primeiro termo: ')) razao = int (input ('Razão: ')) contador = 1…