Re: solve_ivp problem (scipy 1.0.0)

2018-02-20 Thread AB
Hello I don't know why but my answer got lost somehow, so I'm sending it once more, hopefully with better luck. W dniu 2018-02-19 o 11:02, Thomas Jollans pisze: On 2018-02-18 14:39, A.Brozi wrote: Hello In new "scipy" (1.0.0) I've found procedure "solve_ivp", which makes it possible to use

Re: How to convert a list of strings into a list of variables

2011-08-18 Thread AB
Hi, If the «variables» are named attributes you can use getattr. # class colors: red=1 green=2 blue=3 c=colors() a=['red','green','blue'] for v in a: print v,getattr(c,v) #--- AB -- http://ma

Ruby Programming

2008-01-19 Thread LinkExchange . AB
iTechArt has specialized in Ruby on Rails (ROR) development and provides a complete software outsourcing services for web development solutions based on Ruby. We suggest use Ruby framework for developing database-backed web applications with Ajax on front-end because it's a great fit for practicall

Re: Uploading files from IE

2006-03-22 Thread AB
"Irmen de Jong" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > AB wrote: >> All right... I already hated IE. But, now I do even more. My scripts >> upload function is working in Firefox, but not in IE. If I upload a file >> from Interne

Uploading files from IE

2006-03-22 Thread AB
All right... I already hated IE. But, now I do even more. My scripts upload function is working in Firefox, but not in IE. If I upload a file from Internet Explorer I get a file on the system named for the full path from the users computer... example... They user uploads C:\mydocs\test.jpg i

Interaction between TclTk editor with Python code

2005-05-16 Thread ab
Now if I make some changes in the GUI, say I change some value in the editbox or set some value in the list box and click on save in the GUI, how can I read the changed values from Python? I mean, how can I get the value changed in the GUI into some Python variable? Thanks, Ab. --