Re: [Tutor] Standalone Version

2008-02-25 Thread Kent Johnson
Artur Sousa wrote: > > level = (int(input(u"Digite o n\u00EDvel de seu bosque, po\u00E7o de > argila ou mina: "))) > quantity = (int(input(u"Digite a quantidade de recursos a serem > alcan\u00E7ados: "))) > if level == 1: phour = 60 > ... > ... > if level == 19: phour = 911 > ... > ... > if leve

Re: [Tutor] Standalone Version]

2008-02-21 Thread Alan Gauld
> From: Artur Sousa <[EMAIL PROTECTED]> > To: Kent Johnson <[EMAIL PROTECTED]> > > Sorry to bother again. > > Is there a way to distribute a Python program freely on a standalone > version, in which the other person doesn't have to actually open the > Command Line and execute the .py file? If the

Re: [Tutor] Standalone Version

2008-02-21 Thread Kent Johnson
Artur Sousa wrote: > > And please, excuse me, but as english is not my native language, I > couldn't quite understand how to concatenate str and int with % > (modulo). Please give an example of what you want to do - the variables and the desired output. Kent _