CBSE Class 11 Informatics Practices
Question 27 of 33
Lists in Python — Question 27
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