Ad
Code
Diff
  • from functools import reduce
    print(f'hello\n{reduce(lambda x, y: x + y, [2, 5])}')
    
    • print("hello")
    • print(2+5)
    • from functools import reduce
    • print(f'hello\n{reduce(lambda x, y: x + y, [2, 5])}')