Find Smallest Number in List

A Python function to find the smallest number from a given list of numbers.

A list in Python is an interchangeable, ordered collection of elements known as items. Your task is to define a function `find_smallest(lst)` which takes a list of numbers and returns the smallest number from the list. ### Parameters - `lst` (List): A collection of float and integer numbers. ### Return Value - Returns the smallest number in the list `lst`. ### Examples ```python # Here 2 is the smallest number in the list find_smallest([34, 15, 88, 2]) # Returns 2 # In this case, -345 is the smallest number in the list find_smallest([34, -345, -1, 100]) # Returns -345 # The smallest number here is -76 find_smallest([-76, 1.345, 1, 0]) # Returns -76 # Here, -0.9999 is the smallest number in the list find_smallest([0.4356, 0.8795, 0.5435, -0.9999]) # Returns -0.9999 # In this case, 7 is the smallest (and the only) number in the list find_smallest([7, 7, 7]) # Returns 7 ```