CBSE Class 11 Computer Science
Question 29 of 37
Lists in Python — Question 29
Back to all questionsl
=
eval
(
input
(
"Enter a list: "
))
m
=
min
(
l
)
print
(
"Minimum element in the list:"
,
m
)
Output
Enter a list: [1, 4, 65, 34, 23]
Minimum element in the list: 1