Re: [Tutor] Structured files?

2011-06-02 Thread Simon Yan
formation to be structured. IMHO, everything in Python can be "string-lized". > > Péter > > ___ > Tutor maillist  -  Tutor@python.org > To unsubscribe or change subscription options: > http://mail.python.org/mailman/list

Re: [Tutor] Structured files?

2011-06-02 Thread Simon Yan
2011/6/2 Válas Péter : > > > 2011. június 2. 9:29 Simon Yan írta, : >> >> Yes you can. >> I guess the question is how you want the information to be structured. >> IMHO, everything in Python can be "string-lized". >> > What is the syntax then?  I

[Tutor] Open source projects build using Python

2012-04-03 Thread Simon Yan
an open source projects that is built with Python instead of starting up a new project. (I have no good ideas at this moment anyways) I know there are lots of projects which I can work on, but just wanted to hear some recommendations what are the ones good for a long time Python "reader"? -- R

Re: [Tutor] Open source projects build using Python

2012-04-03 Thread Simon Yan
On Wed, Apr 4, 2012 at 1:41 AM, Mark Lawrence wrote: > On 03/04/2012 18:22, Alan Gauld wrote: > >> On 03/04/12 15:45, Simon Yan wrote: >> >> Do a search on SourceForge and Google and see what comes up. >> >> > Hopefully codeplex.com amongst others. &g

Re: [Tutor] How to exit this loop in the interpreter

2012-05-03 Thread Simon Yan
break else: print "other conditions" break > > Thanks and Regards, > Sumod > > -- > http://spawgi.wordpress.com > We can do it and do it better. > > ___________ > Tutor maillist - Tutor@python.org > To unsubscribe or change subscription opt

Re: [Tutor] First Python Test

2013-02-01 Thread Simon Yan
all%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_20> > > > > On 1 February 2013 13:05, Simon Yan wrote: > >> >> >> >> On Thu, Jan 17, 2013 at 6:47 AM, Dustin Guerri wrote: >> >>> Hi there, >>> >>> I

Re: [Tutor] First Python Test

2013-02-01 Thread Simon Yan
LICK > HERE.<http://r1.wisestamp.com/r/landing?promo=20&dest=http%3A%2F%2Fwww.wisestamp.com%2Femail-install%3Futm_source%3Dextension%26utm_medium%3Demail%26utm_campaign%3Dpromo_20> > > > ___ > Tutor maillist - Tutor@python.or

Re: [Tutor] recursive function password check

2013-02-06 Thread Simon Yan
! > It appears that the issue is from this: elif(y[len(y)-1] != vowels): This condition will be true because you are comparing a string with a list. Thus causing passwrod() returning False. > > _______ > Tutor maillist - T