Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #83579
| From | Mark Lawrence <breamoreboy@yahoo.co.uk> |
|---|---|
| Subject | Re: extracting numbers with decimal places from a string |
| Date | 2015-01-12 00:04 +0000 |
| References | <7240a574-dfd7-46c3-80eb-0657b41894bb@googlegroups.com> <3233082.KAWmNIKqbW@PointedEars.de> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.17602.1421021101.18130.python-list@python.org> (permalink) |
On 11/01/2015 23:07, Thomas 'PointedEars' Lahn wrote:
> Store Makhzan wrote:
>
>> I have this script which can calculate the total of numbers given in a
>> string […]
>> total = 0
>> for c in '0123456789':
>> total += int(c)
>> print total
>>
>> […]
>> How should I modify this script to find the total of if the numbers given
>> in the string form have decimal places? That is, how do I need to modify
>> this line: […]
>>
>> for c in '1.32, 5.32, 4.4, 3.78':
>>
>> […] to find the total of these given numbers.
>
> The original script already does not do what it advertises. Instead, it
> iterates over the characters of the string, attempts to convert each to an
> integer and then computes the sum. That is _not_ “calculate the total of
> numbers given in a string”.
>
> A solution has been presented, but it is not very pythonic because the
> original code was not; that should have been
>
> ### Ahh, Gauß ;-)
> print(sum(map(lambda x: int(x), list('0123456789'))))
> ### --------------------------------------------------------------------
>
> Also, it cannot handle non-numeric strings well. Consider this instead:
>
> ### --------------------------------------------------------------------
> from re import findall
>
> s = '1.32, 5.32, 4.4, 3.78'
> print(sum(map(lambda x: float(x), findall(r'-?\d+\.\d+', s))))
> ### --------------------------------------------------------------------
>
> But if you are sure that except for the comma separator there are only
> numeric strings, it is more efficient to use re.split() instead of
> re.findall() here.
>
>
> Aside:
>
> I thought I had more than a fair grasp of regular expressions, but I am
> puzzled by
>
> | $ python3
> | Python 3.4.2 (default, Dec 27 2014, 13:16:08)
> | [GCC 4.9.2] on linux
> | >>> from re import findall
> | >>> s = '1.32, 5.32, 4.4, 3.78'
> | >>> findall(r'-?\d+(\.\d+)?', s)
> | ['.32', '.32', '.4', '.78']
>
> Why does this more flexible pattern not work as I expected in Python 3.x,
> but virtually everywhere else?
>
> And why this?
>
> | >>> findall(r'-?\d+\.\d+', s)
> | ['1.32', '5.32', '4.4', '3.78']
> | >>> findall(r'-?\d+(\.\d+)', s)
> | ['.32', '.32', '.4', '.78']
>
> Feature? Bug?
>
I can't tell you as I avoid regexes like I avoid the plague. Having
said that I do know that there loads of old bugs on the bug tracker,
many of which are fixed in the "new" regex module that's available here
https://pypi.python.org/pypi/regex/
--
My fellow Pythonistas, ask not what our language can do for you, ask
what you can do for our language.
Mark Lawrence
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
extracting numbers with decimal places from a string Store Makhzan <store0a@gmail.com> - 2015-01-11 11:31 -0800
Re: extracting numbers with decimal places from a string Joel Goldstick <joel.goldstick@gmail.com> - 2015-01-11 15:06 -0500
Re: extracting numbers with decimal places from a string Store Makhzan <store0a@gmail.com> - 2015-01-11 12:26 -0800
Re: extracting numbers with decimal places from a string Joel Goldstick <joel.goldstick@gmail.com> - 2015-01-11 16:42 -0500
Re: extracting numbers with decimal places from a string Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-01-11 23:20 +0100
Re: extracting numbers with decimal places from a string Joel Goldstick <joel.goldstick@gmail.com> - 2015-01-11 17:54 -0500
Re: extracting numbers with decimal places from a string Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-01-12 00:12 +0100
Re: extracting numbers with decimal places from a string Joel Goldstick <joel.goldstick@gmail.com> - 2015-01-11 18:35 -0500
Re: extracting numbers with decimal places from a string Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-01-12 00:46 +0100
Re: extracting numbers with decimal places from a string Peter Otten <__peter__@web.de> - 2015-01-12 01:09 +0100
Re: extracting numbers with decimal places from a string Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-01-12 01:45 +0100
Re: extracting numbers with decimal places from a string Chris Angelico <rosuav@gmail.com> - 2015-01-12 11:17 +1100
Re: extracting numbers with decimal places from a string Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2015-01-12 11:45 +1100
Re: extracting numbers with decimal places from a string Grant Edwards <invalid@invalid.invalid> - 2015-01-11 23:06 +0000
Re: extracting numbers with decimal places from a string Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-01-12 00:07 +0100
Re: extracting numbers with decimal places from a string Mark Lawrence <breamoreboy@yahoo.co.uk> - 2015-01-12 00:04 +0000
Re: extracting numbers with decimal places from a string Thomas 'PointedEars' Lahn <PointedEars@web.de> - 2015-01-12 02:00 +0100
Re: extracting numbers with decimal places from a string MRAB <python@mrabarnett.plus.com> - 2015-01-12 00:59 +0000
Re: extracting numbers with decimal places from a string Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2015-01-12 12:13 +1100
csiph-web