You are viewing a single comment's thread. Return to all comments →
cube = lambda x: x ** 3 def fibonacci(n): fib = [0, 1] for _ in range(2, n): fib.append(fib[-1] + fib[-2]) return fib[:n] if __name__ == '__main__': n = int(input()) print(list(map(cube, fibonacci(n))))
Seems like cookies are disabled on this browser, please enable them to open this website
Map and Lambda Function
You are viewing a single comment's thread. Return to all comments →