[Tutor] GUI development with Python 3.4.1

2014-09-17 Thread Juan Christian
I need to develop a GUI for my Python pogram, I already read the GuiProgramming page (https://wiki.python.org/moin/GuiProgramming). For me, the best so far was 'gui2py'. The problem is that I need a simple "C#/Java-ish" GUI builder, that is easy and simple, coding all the GUI by hand is boring, I

Re: [Tutor] print date and skip any repeats

2014-09-17 Thread Cameron Simpson
On 17Sep2014 19:21, questions anon wrote: I think this should be simple but I can't find the right commands. I have a date for each hour for a whole month (and more) and I would like to write a loop that prints each date that is different but skips the dates that are the same. for i in date: p

Re: [Tutor] print date and skip any repeats

2014-09-17 Thread Peter Otten
questions anon wrote: > I think this should be simple but I can't find the right commands. > > I have a date for each hour for a whole month (and more) and I would like > to write a loop that prints each date that is different but skips the > dates that are the same. > > for i in date: > print i

[Tutor] print date and skip any repeats

2014-09-17 Thread questions anon
Hi Tutor, I think this should be simple but I can't find the right commands. I have a date for each hour for a whole month (and more) and I would like to write a loop that prints each date that is different but skips the dates that are the same. for i in date: print i and then skip i until differ