2018年1月11日 星期四

Python: Find the maximum and minimum numbers from a sequence of numbers

Python: Find the maximum and minimum numbers from a sequence of numbers

Python Basic: Exercise-148 with Solution

Write a Python function to find the maximum and minimum numbers from a sequence of numbers.
Note: Do not use built-in functions.
Sample Solution :-
def max_min(data):
  l = data[0]
  s = data[0]
  for num in data:
    if num> l:
      l = num
    elif num< s:
        s = num
  return l, s
print(max_min([0, 10, 15, 40, -5, 42, 17, 28, 75]))

========= RESTART: F:/Python_APSC/py-ex-basic-148.py ===========
(75, -5)
>>> 

沒有留言:

張貼留言

2026 作業2 RFID+Node-Red+Python+SQLite 練習 (修正版 利用wokwi 內部元件)

2026 作業2  RFID+Node-Red+Python+SQLite 練習 (修正版  利用wokwi 內部元件) 使用 wokwi 上 的 元件    (原先尚未有) 硬體線路   不需要 自行建立元件   rfid-rc522.chip.json   rfid-rc52...