>>> a=("-2","-2")
>>> float(a[0][0])
This gives me an error
ValueError: invalid literal for float(): -
So how do I convert it ?
This gives me an error
So how do I convert it ? |
||||
|
Use |
||||
|
|
|
Sorry, but your code has an error:
will do. If you need 2.2 as result, then
|
|||||||||||||
|
|
It is one dimensional array, not multi dimensional array. So you have specify it as follows:
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. |
||||
|
|
|
You're indexing incorrectly, if you want a tuple that contains floats for these two strings, then you have to do the following:
Note that the outer brackets are defining a new tuple. |
|||||
|
>>> print(a[0][0]). That should give you a pretty good clue as to what happened. – Scott Griffiths Apr 15 '11 at 10:40