Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7685903
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:21:23+00:00 2026-05-31T19:21:23+00:00

Nowadays, I am starting to learn haskell, and while I do it, I try

  • 0

Nowadays, I am starting to learn haskell, and while I do it, I try to implement some of the ideas I have learned from it in Python. But, I found this one challenging. You can write a function in Haskell, that takes another function as argument, and returns the same function with it’s arguments’ order flipped. Can one do similiar thing in Python? For example,

def divide(a,b):
    return a / b

new_divide = flip(divide)

# new_divide is now a function that returns second argument divided by first argument

Can you possibly do this in Python?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-31T19:21:24+00:00Added an answer on May 31, 2026 at 7:21 pm

    You can create a closure in Python using nested function definitions. This lets you create a new function that reverses the argument order and then calls the original function:

    >>> from functools import wraps
    >>> def flip(func):
            'Create a new function from the original with the arguments reversed'
            @wraps(func)
            def newfunc(*args):
                return func(*args[::-1])
            return newfunc
    
    >>> def divide(a, b):
            return a / b
    
    >>> new_divide = flip(divide)
    >>> new_divide(30.0, 10.0)
    0.3333333333333333
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

nowadays I have this piece of code: #import C:\Users\Public\SoundLog\DLLs\ForPython\SoundLogDLL.tlb named_guids but I want to
Nowadays we have screens like 1920x1200 and 1680x1050 in popular use and some even
Nowadays I am looking python source code, and I found both python and C#
Nowadays most of the Restaurants and other businesses have a Find Locations functionality on
Learning WPF nowadays. Found something new today with .Net dependency properties. What they bring
It seems to be a common requirement nowadays to have a search feature that
I am studying usage of web services nowadays. Can anyone recommend some free web
I'm an Information Architect and JavaScript developer by trade nowadays, but recently I've been
When you learn HTML and so forth nowadays, the mantra is always Clean code
Many LCD televisions nowadays have USB ports so you can plug in your camera

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.