I have a list with following format:
A1 = [' "29.0" ',' "65.2" ',' "75.2" ']
How do I convert those strings into decimal numbers to perform arithmetic operations on the list elements?
Thanks,
Sankar
|
I have a list with following format:
How do I convert those strings into decimal numbers to perform arithmetic operations on the list elements? Thanks, Sankar |
||||
|
|
|
If you want the result as the nearest binary floating point number use
If you want the result stored exactly use
|
|||||||
|
|
You will need to use
|
|||||||||||||
|
|
use the built in float() function in a list comprehension.
|
|||
|
|
|
|
|||||||
|