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
0
Answer:
print(min(L), max(L))
Explanation:
min() and max() function returns the minimum element and maximum in the list
respectively
Similar questions