subject
Computers and Technology, 04.04.2021 01:00 bm42400

It requires input from a user to populate a list with three values and it's coming up wrong every time. Some values are correct and others are incorrect like [7,15,3] when called in by user it's wrong and selects 15.The goal is to display the minimum input output right facing arrow * ##

#my_list = [7,17,10]

my_lista = [ ]

n = input( )

my_lista. append(n)

# second Value in list

n1 = input()

my_lista. append(n1)

# third value in list

n2 = input()

my_lista. append(n2)

min_num = min(my_lista)

print(min_num)

ansver
Answers: 2

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 15:40
Establish which of the following statements are true. (a) a sequence is convergent if and only if all of its subsequences are convergent. (b) a sequence is bounded if and only if all of its subsequences are bounded. (c) a sequence is monotonic if and only if all of its subsequences are monotonic.
Answers: 2
question
Computers and Technology, 22.06.2019 22:30
What is the most popular genre of video games?
Answers: 1
question
Computers and Technology, 23.06.2019 07:50
Apython programming question: assume s is a string of lower case characters. write a program that prints the number of times the string 'bob' occurs in s. for example, if s = 'azcbobobegghakl', then your program should print number of times bob occurs is: 2
Answers: 3
question
Computers and Technology, 23.06.2019 11:00
What is the name of the sound effect that danny hears
Answers: 1
You know the right answer?
It requires input from a user to populate a list with three values and it's coming up wrong every ti...
Questions
Questions on the website: 13722362