On Jul 19, 1:42 pm, Rainer Weikusat <
rweiku...@mssgmbh.com> wrote:
> The same can be achieved with just about as little code without
> loading an additional module and performing several subroutine calls
> and even without creating the intermediate reverted list
I am picking these three values from a CSV file, which contains
several other array-types of things, e.g. email addresses and phone
numbers, that I can sift through with regular expressions. The
particular problem I had was that I have several dates in exactly the
same format. All of these consist of exactly one value, except for
this particular one. What I get from the database is an indeterminate
list of possible values, which number I limit to 3 after looking at
the data.
The insight I missed was simply reversing the list. It's so obvious
now that I'll a little embarrassed that I missed it.
Thanks for your suggestion, CC.