Python 3.2 Tkinter and TTK

2011-04-28 Thread steven.oldner
Just downloaded Python3.2 from python's site and attempted to run some of the examples in the 24.2.10Tk Styling. The button worked, but the menu didn't. I also tried a couple from the TKDocs web site. Only errors from there. So, what do I need to do to get it to run? -- http://mail.python.org/

Re: Language mavens: Is there a programming with "if then else ENDIF" syntax?

2009-11-17 Thread steven.oldner
Along the COBOl line is ABAP, the 4gl language from SAP. If today = 'Mon'. message 'oh boy'. elseif today = 'Wed'. message 'Hump day'. elseif today = 'Fri'. message 'TGIF'. else. message 'get to work'. endif. The period is the statement teminator. Indentation and separte lines are just to

Re: The Python: Rag October issue available

2009-10-02 Thread steven.oldner
On Oct 2, 11:14 am, Bernie wrote: > The Python: Rag October issue available > > The October issue of The Python: Rag is available at: > > http://www.pythonrag.org > > A monthly, free, community run, Python magazine - issues are in pdf > format, intended for anyone interested in Python, without bei

Re: zip codes

2009-08-17 Thread steven.oldner
On Aug 17, 5:21 am, MRAB wrote: > Sjoerd Mullender wrote: > > Martin P. Hellwig wrote: > >> Shailen wrote: > >>> Is there any Python module that helps with US and foreign zip-code > >>> lookups? I'm thinking of something that provides basic mappings of zip > >>> to cities, city to zips, etc. Since

Blogger Widget web app

2009-06-11 Thread steven.oldner
Please give me directions on where to start researching for answers. I probably can do the javascript, but I don't know where to start on the Python. 1. Wife has a blogger blog and wants a widget to embed in the posts. 2. Widget will have a form that readers can enter their name and url. 3. Widget

Re: Invalid syntax with print "Hello World"

2009-03-12 Thread steven.oldner
On Mar 12, 2:25 am, John Machin wrote: > On Mar 12, 5:57 pm, Henrik Bechmann wrote: > > > obviously total mewbiew: > > > My first program in Python Windows > > What is that you are callind "Python Windows"? What version of Python > are you running? > > 2.X: print "Hello World" > should work. > >

Re: Data Coding suggestions

2009-02-28 Thread steven.oldner
On Feb 27, 2:04 pm, Rick Dooling wrote: > On Feb 27, 6:42 am, "steven.oldner" wrote: > > > Just learning Python and have a project to create a weekly menu and a > > shopping list from the menu.   > > Question:  How should I set up the data?  I'm looking at

Re: ANN: updates to Python-by-example

2009-02-27 Thread steven.oldner
On Feb 27, 8:40 am, pyt...@bdurham.com wrote: > Rainy, > > Great stuff! Thanks for your examples with the community!! > > Regards, > Malcolm Let me add my thanks! I using it now... -- http://mail.python.org/mailman/listinfo/python-list

Data Coding suggestions

2009-02-27 Thread steven.oldner
Just learning Python and have a project to create a weekly menu and a shopping list from the menu. This is something I do manually now, so I'm automating it. What I'd like is a list of menu choices, such as: CODE- Description - Est Cost 'B01 - Pancakes, Sausage,and Eggs - $5.80, 'L01 - Tuna Fis

Re: Newby Question for reading a file

2009-02-19 Thread steven.oldner
On Feb 19, 1:44 pm, Curt Hash wrote: > On Thu, Feb 19, 2009 at 12:07 PM, steven.oldner > wrote: > > > On Feb 19, 12:40 pm, Mike Driscoll wrote: > > > On Feb 19, 12:32 pm, "steven.oldner" wrote: > > > > > Simple question but I haven't fo

Re: Newby Question for reading a file

2009-02-19 Thread steven.oldner
On Feb 19, 12:40 pm, Mike Driscoll wrote: > On Feb 19, 12:32 pm, "steven.oldner" wrote: > > > Simple question but I haven't found an answer.  I program in ABAP, and > > in ABAP you define the data structure of the file and move the file > > line into the

Newby Question for reading a file

2009-02-19 Thread steven.oldner
Simple question but I haven't found an answer. I program in ABAP, and in ABAP you define the data structure of the file and move the file line into the structure, and then do something to the fields. That's my mental reference. How do I separate or address each field in the file line with PYTHON