Re: Read any function in runtime

2009-10-26 Thread Jack Norton
Matt McCredie wrote: Rhodri James wildebst.demon.co.uk> writes: On Fri, 23 Oct 2009 17:39:40 +0100, Matt McCredie gmail.com> wrote: joao abrantes gmail.com> writes: Hey. I want to make a program like this:print "Complete the function f(x)="then the user would en

Re: Read any function in runtime

2009-10-26 Thread Matt McCredie
Rhodri James wildebst.demon.co.uk> writes: > > On Fri, 23 Oct 2009 17:39:40 +0100, Matt McCredie gmail.com> > wrote: > > > joao abrantes gmail.com> writes: > > > >> > >> Hey. I want to make a program like this:print "Complete the function > > f(x)="then the user would enter x+2 or 1/x or an

Re: Read any function in runtime

2009-10-26 Thread Rhodri James
On Fri, 23 Oct 2009 17:39:40 +0100, Matt McCredie wrote: joao abrantes gmail.com> writes: Hey. I want to make a program like this:print "Complete the function f(x)="then the user would enter x+2 or 1/x or any other function that only uses the variable x. Then my python program would cal

Re: Read any function in runtime

2009-10-23 Thread Matt McCredie
joao abrantes gmail.com> writes: > > Hey. I want to make a program like this:print "Complete the function f(x)="then the user would enter x+2 or 1/x or any other function that only uses the variable x. Then my python program would calculate f(x) in some points for example in f(2),f(4).. etc . Ho

Read any function in runtime

2009-10-23 Thread joao abrantes
Hey. I want to make a program like this: print "Complete the function f(x)=" then the user would enter x+2 or 1/x or any other function that only uses the variable x. Then my python program would calculate f(x) in some points for example in f(2),f(4).. etc . How can I do this? -- http://mail.pyt