Re: [Pippy-discuss] a Pippy question
Brought to you by:
tokeneater
|
From: Bill P. <bj....@te...> - 2003-10-31 02:47:26
|
> Hello All, > > > > I just bought my first Palm last night (a Zire) and am > already running Python in interactive mode a few hours later. > > > > I'm stumped at the point where I would like to run this > very >simple python program... > > > > #test.py > > x, y = 0, 0 > > data_value = [1,2,3,4,5,4,3,2,1] > > > > for x in data_value: > > print '\n' > > for y in range(0,x): > > print '*', > > > > I've typed the following lines in Pippy...based on > Kathryn's > response in the sourceforge mailing list. > > > > import memoimp; memoimp.install( ) > > > > import test > > > > Questions : > > - do I need to eval each line ? > > - am I doing this correctly ? > > > > Thanks ! > > > > Rgds, > > Dennis Dennis, Remember that you must create a "Python" MemoPad category and save your program in it. The Pippy importer only looks for memos in the "Python" category. -- Bill |