Computer Science, asked by rathorenr2004, 2 months ago

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 guravvaibhavi80
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