follow the algorithm to find Smallest of the given numbers work stepwise and complete the table
Answers
Answered by
2
def _min(nums):
_min = nums[0]
for n in nums:
if n < _min:
_min = n
return _min
print(_min((nums := list(map(int, input("nums: ").split())))))
Answered by
0
Answer:
def _min(nums):
_min = nums[0]
for n in nums:
if n < _min:
_min = n
return _min
print(_min((nums := list(map(int, input("nums: ").split())))))
\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!
Similar questions