Python- Finding The Largest Number In A List Using Forloop Or While Loop
Basically we are given a list of numbers and we are asked to write an algorithm to find the largest number in the list, note: the numbers are not in order and may contain decimals
Solution 1:
there's also a built in function called max... works like a charm
Post a Comment for "Python- Finding The Largest Number In A List Using Forloop Or While Loop"