Write a program to accept values …
CBSE, JEE, NEET, CUET
Question Bank, Mock Tests, Exam Papers
NCERT Solutions, Sample Papers, Notes, Videos
Related Questions
Posted by Syedali Fathima 5 months, 3 weeks ago
- 1 answers
Posted by Manoj Kumar Manoj Kumar 7 months, 1 week ago
- 0 answers
Posted by Hanni Pham 4 months, 1 week ago
- 1 answers
Posted by Priya Shukla 5 months, 2 weeks ago
- 1 answers
Posted by Prawar Narang 6 months, 2 weeks ago
- 1 answers
Posted by Kandeepan Jothivel 6 months, 3 weeks ago
- 2 answers
Posted by Hanni Pham 4 months, 1 week ago
- 0 answers
myCBSEguide
Trusted by 1 Crore+ Students
Test Generator
Create papers online. It's FREE.
CUET Mock Tests
75,000+ questions to practice only on myCBSEguide app
Preeti Dabral 3 years, 4 months ago
t=tuple( )
n=int(input("enter any no.:"))
for i in range(n):
a=input("enter number:")
t+=(a,)
print(t)
for i in t:
print(i)
print(max(t))
print(min(t))
Explanation: first we have created a tuple by accepting values from the user .and we display it's elements one after the another also it will display the minimum and maximum value
2Thank You