Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
>>> a=("-2","-2")
>>> float(a[0][0])

This gives me an error

ValueError: invalid literal for float(): -

So how do I convert it ?

share|improve this question
I have edited the output now . – Hick Apr 15 '11 at 9:28
4  
To debug your problem yourself the first thing to try would be >>> print(a[0][0]). That should give you a pretty good clue as to what happened. – Scott Griffiths Apr 15 '11 at 10:40

4 Answers

Use a[0] instead (a[0][0] is the first character of the first element, not the first element).

share|improve this answer

Sorry, but your code has an error:

float(a[0]) 

will do. If you need 2.2 as result, then

x = 0.0; # python 2.x
for i in range(0, len(a)):
    x += a[i] * 10**-i
share|improve this answer
No it still doesnt give me any result . I get the same error – Hick Apr 15 '11 at 9:24
Its a 2 dimensional array . Thus in a data-set of negative numbers stored as strings, how do I convert them into float – Hick Apr 15 '11 at 9:25
Em.. which code block returns an error? I'm 100% sure that x = float(('2','2')[0]) works. – BasicWolf Apr 15 '11 at 9:26
You see, a = ('-2', '-2') is treated as 1-dimensional array (actually a tuple) in Python. To get another dimension you must add it explicitly: ` a = ( ('-2', '-2'), ) # note the last comma`. Now you can do float(a[0][0]). – BasicWolf Apr 15 '11 at 9:29
1  
@mekasperasky: Your comments make no sense. Please update the question with your real data and the real code which really reads that data. – S.Lott Apr 15 '11 at 10:10
show 2 more comments

It is one dimensional array, not multi dimensional array. So you have specify it as follows:

float(a[0])
float(a[1])

It can be specified that a[0] is the first place number '-2' and a[1] is the second place number '-2'. Try it.. I hope it should be helpful for you.

share|improve this answer

You're indexing incorrectly, if you want a tuple that contains floats for these two strings, then you have to do the following:

(float(a[0]), float(a[1]))

Note that the outer brackets are defining a new tuple.

share|improve this answer
Or use map(float, a) to convert all elements of an arbitrary size input. – Blair Apr 15 '11 at 10:26
That sounds better! :D – James Bedford Apr 15 '11 at 10:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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