vote up -1 vote down star
def fun1(a):

    for i in range(len(a)):
        a[i] = a[i] * a[i]
    return a
flag

71% accept rate
1  
Should this be tagged "homework" perhaps? – thijs Oct 16 at 9:19
4  
sadly tag beginner does not fully reflect quality of the question – SilentGhost Oct 16 at 9:20

6 Answers

vote up 12 vote down check

It takes an array as parameter and returns the same array with each member squared.

EDIT:

Since you modified your question from 'What does this function do' to 'What is some code to execute this function', here is an example:

def fun1(a):
    for i in range(len(a)):
        a[i] = a[i] * a[i]
    return a

test1 = [1,2,3,4,5]
print 'Original list', test1
test2 = fun1(test1)
print 'Result', test2
print 'Original list', test1

The output will be:

Original list [1, 2, 3, 4, 5]
Result [1, 4, 9, 16, 25]
Original list [1, 4, 9, 16, 25]

Because the function modifies the list in place, test1 is also modified.

link|flag
3  
and it can also be written as: [item*item for item in a] – Anders Westrup Oct 16 at 9:20
It's also worth mentioning that it actually modifies the variable that was passed to the function. If you apply it more than once to the same variable you will get a different result each time. – Ben James Oct 16 at 9:26
vote up 3 vote down

It will go through your List and multiply each value by itself.

Example

a = [ 1, 2, 3, 4, 5, 6 ]

After that function a would look like this:

a = [ 1, 4, 9, 16, 25, 36 ]
link|flag
1  
In Python a list uses square brackets – Andre Miller Oct 16 at 9:20
Thanks, corrected it. – Filip Ekberg Oct 16 at 9:22
vote up 3 vote down

It's a trivial function that could be replaced with the one-liner:

a = [x*x for x in a]
link|flag
1  
That probably just confuses him. – Filip Ekberg Oct 16 at 9:23
I suspect that for a beginner, this will be even more confusing. – Chris Lutz Oct 16 at 9:24
I don't think it's confusing. (Simple) list comprehensions were not at all confusing for me as a Python beginner. – Ben James Oct 16 at 9:29
Also, as demonstrated by Andre's example, it's not exactly identical. a = fun1(a) is identical to a = [x*x for x in a] but b = fun1(a) is not the same as b = [x*x for x in a] (this should probably be considered a bug in fun1 ). – Chris Lutz Oct 16 at 10:09
Chris, I think you're taking my example as general when it wasn't meant to be. There's a reason why my example starts with a =. – Ben James Oct 16 at 10:26
vote up 2 vote down

it multiplies each element of the array "a" with itself and stores the results back in the array.

link|flag
vote up 2 vote down

a is passed as a list , I assume.

It squares each element of the list and returns the list.

link|flag
vote up 1 vote down

It squares every element in the input array and returns the squared array.

So with a = [1,2,3,4,5]

result is: [1,4,9,16,25]

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.