Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #32944

Re: Unconverted data remains

Date 2012-11-08 12:56 +0000
From MRAB <python@mrabarnett.plus.com>
Subject Re: Unconverted data remains
References <CABgq=FxovqhZ4EgXkSm=LpwACM4L_svRKOZw=G06CV4bsmG-MA@mail.gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.3431.1352379375.27098.python-list@python.org> (permalink)

Show all headers | View raw


On 2012-11-08 08:04, Nikhil Verma wrote:
> Hi
>
> My Problem
>
>
> I have a list :-
>   L = ['Sunday November 11  2012 9:00pm ', 'Thursday November 15  2012
> 7:00pm ',\
>                   'Friday November 16  2012 7:00pm ', 'Monday November
> 19  2012 7:30pm ', \
>                   'Friday November 23  2012 7:30pm ', 'Sunday November
> 25  2012 8:00pm ',\
>                   'Monday November 262012 7:00pm ', 'Thursday November
> 29  2012 6:30pm ',\
>                   'Saturday December 1  20125:30pm ', 'Thursday December
> 6  2012 9:00pm ',\
>                   'Sunday December 9  2012 7:00pm ', 'Friday November 9
>   2012 6:00pm ', \
>                   'Friday November 9  2012 7:00pm ', 'Friday November 9
>   2012 7:00pm ']
>
> final_event_time = [datetime.strptime(iterable, '%A %B %d %Y %I:%M%p')
> for iterable in L]
>
> and having this error Unconverted data remains . I am trying to convert
> all these in datetime object.
>
It's complaining about the trailing space in the strings. Try removing
it.

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Unconverted data remains MRAB <python@mrabarnett.plus.com> - 2012-11-08 12:56 +0000

csiph-web