Re: Is Python like VB?

2005-03-17 Thread Groleo Marius
Maybe you should ask : Is VB like Python
( remark the  )


On 17 Mar 2005 09:45:22 +0200, Ville Vainio [EMAIL PROTECTED] wrote:
  Cappy == Cappy2112  [EMAIL PROTECTED] writes:
 
 Cappy VB has a much better IDE than the IDE's for Python,
 Cappy although Eric3 is one of the best, and is absolutely free.
 
 Eric3 is not easily available for win32, due to current state of Qt
 licensing (will change with Qt4 I think).
 
 Cappy There are many gui toolkits/frameworks for Python, but the
 Cappy foreunners are pyQT, wxPython, pyGTK, and TK/Tkinter.
 
 On windows it might make sense to choose wxPython, though I've heard
 some good stuff about new versions of pyGTK as well.
 
 People coming from VB background probably also appreciate the ability
 to draw the UI in pointclick style:
 
 http://gazpacho.sicem.biz/
 http://wxglade.sourceforge.net/
 
 Unfortunately these seem to still be a tad rough around the edges...
 
 --
 Ville Vainio   http://tinyurl.com/2prnb
 --
 http://mail.python.org/mailman/listinfo/python-list
 


-- 
Regards, Groleo!

 .''`.   # touch universe
: :'  :  # chmod +rwx universe
`. `'` # ./universe
  `-  Debian - when you have better things to do than fix a system
-- 
http://mail.python.org/mailman/listinfo/python-list


Execute a list

2005-02-22 Thread Groleo Marius
Hi.
How can i execute a string in python?
For example if I have the variable s, defined below
s = 'print hello'
How can I execute the code that s keeps inside, considering that the
code is correct?
-- 
http://mail.python.org/mailman/listinfo/python-list


executea string

2005-02-22 Thread Groleo Marius
I have the folowing code:
 c=2
 e=3
 s=12
 code.append('funtion (c, e,s)')
 print \n.join(code) + '\n'

The problem is when i call append.
The variables s, c, e are not replaced with their value, so in the end
i get the result:

funtion( c, e, s);

The result that i want is :
funtion(2,3,12);



-- 
Regards,
 .''`.   # touch universe
: :'  :  # chmod +rwx universe
`. `'` # ./universe
  `-  Debian - when you have better things to do than fix a system
-- 
http://mail.python.org/mailman/listinfo/python-list