Python基礎案例練習2

Python基礎案例練習python 1、map()的應用 def f(x, y): result = 1 for i in range(1, y - x): result *= i return result x = list(map(f, (0, 2, 4), range(5, 8))) print(x) 運行結果:[24, 6, 2
相關文章
相關標籤/搜索