Computer Science, asked by aaryanpathak5678, 6 months ago

Let L=[2,4,3,7,1,10,9] . Write Python script to print the smallest and largest integer in L without using loop

Answers

Answered by harika555
0

Answer:

print(min(L), max(L))

Explanation:

min() and max() function returns the minimum element and maximum in the list

respectively

Similar questions