Write a program to input n numbers from the
user. Store these numbers in a tuple. Print the
maximum and minimum number from this tuple.
Answers
Answered by
5
Explanation:
t = tuple ( )
n = input (“Enter any number”)
print “Enter all numbers one after other”
for i in range (n) :
a = input (“Enter number”)
t = t+(a, )
print “Output is”
print t
Similar questions