Posts by Douglas Cortez • 11 points
1 post
-
-4
votes1
answer178
viewsQ: With creating a program that reads 10 numbers and writes the lowest and highest read value (Python)?
I’m having a little trouble with this exercise. Here is my code: python num = float(input('Digite o 1 numero: ')) guarda_maior = num guarda_menor = num for n in range(1, 10): num =…