I need a lesson - howfast.py Revisited
Bjorn Pettersen
bjorn at roguewave.com
Fri Jun 9 19:00:36 EDT 2000
More information about the Python-list mailing list
Fri Jun 9 19:00:36 EDT 2000
- Previous message (by thread): ActiveX scripting - does it work?
- Next message (by thread): I need a lesson - howfast.py Revisited
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
To create an executable, you'll need Installer from Gordon's Starship pages (http://starship.python.net/crew/gmcm/distribute.html) The command you're looking for is: python c:\where\you\installed\installer\Freeze.py myscript.py (there are variations on this for different purposes of course, but this should get you going ;-) keep-hitting-those-walls'ly y'rs -- bjorn "F. G. Brown" wrote: > > Greetings! > First off I want to thank everyone for their responses to my post a few days > back (2000 06 07). I was able to learn much from all of your suggestions. > At the same time I can see that it's going to take alot of effort on my > part, to be proficient in using Python, so you might be hearing from me now > and then when I hit a wall. If anyone has a suggested challenge for me to > work on next, I'll give it a try. > Thanks again, Bjorn, Brent, Scott, David, Brett, & Moshe. > Regards, > Fred > > Below is what I finally came up with using everyone suggestions. > I next am going to see if I can make it an executable file in a DOS > and Windows environment. I seem to remember reading that I > can download a program for doing that somewhere. > Time to go hunting! > !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! > !!!!!!!!!!!!!!!! > > howfast.py > > decide = 'y' > while decide == 'y': > distance = input("What is the distance you traveled in miles? ") > time = input("How many seconds did it require? ") > speed = distance*3600.00/time > print "You were going %d mph!" %speed > if speed > 75: > print "Hey you better slow down!" > decide = raw_input ("Would you like to do another? (y)es or (n)o") > if decide == "y": > print 'Here we go!' > else: > print 'See ya!' > > -- > http://www.python.org/mailman/listinfo/python-list
- Previous message (by thread): ActiveX scripting - does it work?
- Next message (by thread): I need a lesson - howfast.py Revisited
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list