Answer to Question #291236 in Python for H A

Question #291236
 input 5 numbers and find the min?

I want very simple code


1
Expert's answer
2022-01-28T07:59:50-0500
print("Input five numbers into separate lines:")

min_numb = int(input())

for i in range(4):
    numb =int(input())
    if numb < min_numb:
        min_numb = numb

print("The minimal value between inputted numbers is", min_numb)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS