3
votes
1answer
47 views

Looking for a fold-like idiom

So my friend presented a problem for me to solve, and I'm currently writing a solution in functional-style Python. The problem itself isn't my question; I'm looking for a possible idiom that I can't ...
1
vote
1answer
40 views

Python: compose list from nested iterators

I have a list of tuples that I need to expand it by adding two elements, each of them comes from a list. So I have [(1, 2, 3)] and two iterators it1 = (i for i in ['a1', 'a2']) and it2 = (i for i in ...
-1
votes
0answers
74 views

Python in functional programming [duplicate]

I am a newbie to the concept of Functional Programming; and yet to read through it completely. But the one thing that strikes me is that nowhere does Python get mentioned as one of the languages ...
0
votes
2answers
40 views

Python Applying map function to sub list

I have an array holding another object items : myarray=[] myarray.append((1,2,3)) myarray.append((4,5,6)) how can I apply a map function to the last 2 columns of the list somethign like def ...
2
votes
1answer
41 views

identifying gap size in 1D numpy array

I have a numpy array containing gaps of various sizes. I would like to fill the smaller gaps of size < N with linear interpolation. In other words for: N = 2 and x = np.array([10., 20., ...
1
vote
1answer
52 views

Is there any way to lazy evaluate function.func_name?

This question is not about my code I just want to claim the reason why I need lazy evalution on function.func_name I'm using a curry decorator in my code I made it to show curried arguments by ...
1
vote
2answers
78 views

Functional programming in Python: returning none instead of correct value [closed]

I wrote a functional code in python and I do not understand why it returns a None instead of the correct value which the code clearly generates. The purpose of this script is to take a ...
3
votes
1answer
62 views

Correct use of a fold or reduce function to long-to-wide data in python or javascript?

Trying to learn to think like a functional programmer a little more---I'd like to transform a data set with what I think is either a fold or a reduce operation. In R, I would think of this as a ...
4
votes
2answers
81 views

itertools or functools for find-replace list in python

I have a set of strings that are sometimes invalid that I'd like to replace with particular better strings. I've been playing with functools and itertools and would like to try applying these to the ...
2
votes
4answers
120 views

In Python, why can't an accumulator generators be written with lambdas? [closed]

Paul Graham describes the following problem: We want to write a function that generates accumulators-- a function that takes a number n, and returns a function that takes another number i and ...
4
votes
2answers
94 views

Python and functional language interop

My current primary programming language is python. There are lots of things I like about it, but I also like functional languages. Not enough to do an entire program in them, but definitely for ...
16
votes
2answers
317 views

How does this lambda/yield/generator comprehension work?

I was looking through my codebase today and found this: def optionsToArgs(options, separator='='): kvs = [ ( "%(option)s%(separator)s%(value)s" % {'option' : ...
0
votes
2answers
90 views

How can I define an operator (eg integrator) in Python operating on a multi-variable function?

How can I define an operator (eg integrator) in Python operating on a multi-variable function? My problem is that when I define an integrator function numint to numerically integrate a multivariable ...
3
votes
2answers
91 views

Using itertools for recursive function application

I need a Python function iterate(f, x) that creates an iterator returning the values x, f(x), f(f(x)), f(f(f(x))), etc (like, e.g., Clojure's iterate). First of all, I was wondering: Does this ...
0
votes
1answer
101 views

Partial and named arguments in Clojure

I'm a Python programmer just learning Clojure. In Python I love how I can used named arguments in a call to functools.partial: def pow(base, exponent): return base ** exponent exp = ...
0
votes
1answer
59 views

Python: Errno 57 when calling Server function in GUI

Question Why am I receiving error: [Errno 57] Socket is not connected, even though I have initialized the socket? The full code is on paste bin, but feel free to check out what I have provided here. ...
-3
votes
2answers
88 views

Understanding “def main” and “overloading” in Python [closed]

I often see some code with def main(A,B) some steps described as an "overloading for the main function", after reading something more specific about Python I know that this is not true because: ...
2
votes
4answers
77 views

Modify dict values inplace

I would like to apply a function to values of a dict inplace in the dict (like map in a functional programming setting). Let's say I have this dict: d = { 'a':2, 'b':3 } I want to apply the ...
2
votes
5answers
130 views

python: get number of items from list(sequence) with certain condition

Assuming that I have a list with huge number of items. l = [ 1, 4, 6, 30, 2, ... ] I want to get the number of items from that list, where an item should satisfy certain condition. My first thought ...
1
vote
1answer
48 views

Add a variable test to a function

So I just asked about function lists, and now I want to see if I can, I guess make a string a non-string? I don't know quite how to word it. The idea is to pass a function a string that contains the ...
2
votes
4answers
102 views

Python functions within lists

So today in computer science I asked about using a function as a variable. For example, I can create a function, such as returnMe(i) and make an array that will be used to call it. Like h = ...
-3
votes
2answers
69 views
1
vote
0answers
81 views

Lazy parameter binding in Python

I tried to design a workflow using composite pattern, the sample codes looks like this: class CommandInterface(object): def __init__(self, name, template=None, tool=None, param : ...
0
votes
4answers
76 views

Reduce set with lambda

Given a set where each element is a string, how can I reduce the set into an integer that is the sum of the length of these strings? setA = ("hi", "hello", "bye") reduce(lambda .... for word in setA) ...
2
votes
2answers
91 views

Is there any operator.unpack in Python?

Is there any built-in version for this def unpack(f, a): return f(**a) #or ``return f(*a)'' Why isn't unpack considered to be an operator and located in operator.*? I'm trying to do something ...
1
vote
0answers
68 views

Python: Functional Composition vs. **kwargs

I am confused about the compose function in python. From what i've read there are two possible uses: compose(f,g)(x) ~> f(g(x)) and compose(f,g, unpack=True)(x) ~> f(*g(x)) the latter ...
5
votes
2answers
158 views

Access operator functions by symbol

I need a function which takes one of python's operator symbols or keywords as a string, along with its operands, evaluates it, and returns the result. Like this: >>> string_op('<=', 3, 3) ...
1
vote
1answer
204 views

Merge of lazy streams (using generators) in Python

I'm playing with functional capacities of Python 3 and I tried to implement classical algorithm for calculating Hamming numbers. That's the numbers which have as prime factors only 2, 3 or 5. First ...
5
votes
2answers
108 views

Functional python — why does only one of these generators require list() to work?

In computing the Chinese Remainder theorem from a vector of tuples (residue, modulus) the following code fails : c = ((1,5),(3,7),(11,13),(19,23)) def crt(c): residues, moduli = zip(*c) ...
1
vote
5answers
231 views

Python split for lists

If we have a list of strings in python and want to create sublists based on some special string how should we do? For instance: l = ["data","more data","","data 2","more data ...
0
votes
1answer
74 views

Function passing blank list as argument instead of single-element list

I'm writing a function that parses strings into lists that get used by another function. One of the operations that it performs is that it attaches a character to a string inside the (sometimes deeply ...
2
votes
1answer
189 views

Equivalent of Haskell scanl in python

I would like to know if there is a built in function in python for the equivalent Haskell scanl, as reduce is the equivalent of foldl. Something that does this: Prelude> scanl (+) 0 [1 ..10] ...
1
vote
2answers
85 views

A higher order function for sequential, conditional and modified function application?

I'm writing Python in functional style (I think what I'm getting at is similar to a monad?). Here's what I have so far, hardcoded for three functions. What if I had 10 or 100? # a list of ...
-3
votes
1answer
72 views

Function that returns a function? [closed]

Q: Write a function make_cylinder_volume_func(r) which expects a number r to represent the radius of a cylinder. The function call make_cylinder_volume_func(r) should return a function which takes a ...
4
votes
5answers
109 views

Python: trying to collapse a function mapping on the second argument

NOTE: Please read the BETTER UPDATE section below before commenting. There is some subtlety here. None of the answers given yet work in context, as far as I can tell. I'm trying to find an analog ...
1
vote
0answers
137 views

Higher order functions: automatic generation vs manual definition

I'm trying to delay evaluation for a bit, and so I prefer to work with functions as long as possible. I have class Function which defines composition and pointwise arithmetics for functions: from ...
1
vote
3answers
97 views

Converting list of tuples in functional way

I have the following list in Python: [('1','2','3'),('5','6','7')] I need to convert the tuples inside the list into integer([(1,2,3),(5,6,7)]) in a functional way. I can do them for a list using ...
0
votes
4answers
165 views

Make Python List Unique in Functional way (map/reduce/filter)

Is there a way in Python of making a List unique through functional paradigm ? Input : [1,2,2,3,3,3,4] Output: [1,2,3,4] (In order preserving manner) I know there are other ways but none is in the ...
4
votes
6answers
116 views

How to sum elements in functional way

I am trying to write a function which maps elements of a list to get sum of the element and the previous elements in the list in a functional style using python e.g. : func([0, 1, 2, 3, 4, 5, 6, ...
-2
votes
1answer
106 views

Limit to Number of Nested Function Calls in Python

Just a warning, this code is ugly. I know there are better ways of doing this but this is just an exercise. I am poking around with the functional programming side of python, but I keep encountering ...
4
votes
3answers
86 views

Implementing pointwise arithmetic with implicit type conversion

Suppose I have class Function, whose instances are callables that take one argument. I defined pointwise arithmetic for these classes in the straightforward way. Here's a simplified version of my code ...
1
vote
2answers
106 views

Equivalent to Lambda Expressions in Python

A common operation I perform is joining a list of lists of letters into a list of words (strings). I normally use a list comprehension: lists_of_letters = [["m", "y"], ["d", "o", "g"], ["s", "k", ...
1
vote
1answer
181 views

Python 3 Map function is not Calling up function

Why doesn't following code print anything: #!/usr/bin/python3 class test: def do_someting(self,value): print(value) return value def fun1(self): ...
1
vote
5answers
368 views

Python reduce explanation

I'm not able to understand the following code segment: >>> lot = ((1, 2), (3, 4), (5,)) >>> reduce(lambda t1, t2: t1 + t2, lot) (1, 2, 3, 4, 5) How does the reduce function ...
0
votes
3answers
123 views

How to Loop x Times With Functional Style?

I have this recursive function: def lifecycle(population): ... lifecycle(new_population) I want to perform this loop 100 times. I want to use correct functional style. So, I cannot use a ...
0
votes
2answers
74 views

Generating a simple mathematical sequence in Python

I'm new to Python and coming from a PHP background.. I'm impressed. Is there a way of getting a list of numbers from this sequence: i^2, i^2 + i, i^2 + 2i, ..., n i.e. if i=2 and n=30: 4, 6, 8, ...
3
votes
3answers
80 views

How to refer to the whole array within reduce()?

What I have: array = original_array[:] result = reduce(lambda a,b: some_function(b,array), array) What I want: I want to get rid of the array = original_array[:] statement. Ideally I would simply ...
2
votes
4answers
167 views

Functional python programming and conditionals

I'm trying to write a python function in a functional way. The problem is I don't know, how to transform an if conditional into a functional style. I have two variables: A and C, which I want to ...
5
votes
2answers
142 views

How to understand the functional programming code for converting IP string to an integer?

In a python discusion, I saw a function to convert IP string into an integer in functional progamming way. Here is the Link . The function is implemented in a single line. def ipnumber(ip): ...
5
votes
5answers
255 views

Lazy transform in C++

I have the following Python snippet that I would like to reproduce using C++: from itertools import count, imap source = count(1) pipe1 = imap(lambda x: 2 * x, source) pipe2 = imap(lambda x: x + 1, ...

1 2 3 4 5