Re: [Tutor] Translate this VB.NET code into Python for me?

2008-03-11 Thread Dick Moores
Forwarding to the list. At 12:13 PM 3/11/2008, Tony Cappellini wrote: >I'm weeks behind on reading my digests, so this may have already been >pointed out. > >Message: 6 >Date: Tue, 04 Mar 2008 17:58:20 -0800 >From: Dick Moores <[EMAIL PROTECTED]> >Subject: Re: [Tutor] Translate this VB.NET code in

Re: [Tutor] Begining Python

2008-03-11 Thread Terry Carroll
On Tue, 11 Mar 2008, Meftah Tayeb wrote: > 2. do you know a Free IDE for Python (for windows) ? Meftah, I'd suggest you install Activestate's distribution of Python, which includes the PythonWin environment (not quite an IDE, in that there is no GUI designer, for example) and many Windows-speci

Re: [Tutor] Begining Python

2008-03-11 Thread bob gailer
Meftah Tayeb wrote: > 1. do you know a tutorial for this ? This tutor list is also a good place to ask questions. > 2. do you know a Free IDE for Python (for windows) ? Many of us really like http://sourceforge.net/projects/pywin32/ -- Bob Gailer 919-636-4239 Chapel Hill, NC

Re: [Tutor] Begining Python

2008-03-11 Thread Kent Johnson
Meftah Tayeb wrote: > hi my friends, > please i want to begin developing with python. > 1. do you know a tutorial for this ? http://wiki.python.org/moin/BeginnersGuide/NonProgrammers http://wiki.python.org/moin/BeginnersGuide/Programmers > 2. do you know a Free IDE for Python (for windows) ? The

Re: [Tutor] Begining Python

2008-03-11 Thread Tiago Katcipis
tutorial i liked this one when i was starting http://docs.python.org/tut/ free IDE that i use is Eclipse with PyDev plugin. http://pydev.sourceforge.net/ www.eclipse.org On Tue, Mar 11, 2008 at 4:41 PM, Meftah Tayeb <[EMAIL PROTECTED]> wrote: > hi my friends, > please i want to begin developin

[Tutor] Begining Python

2008-03-11 Thread Meftah Tayeb
hi my friends, please i want to begin developing with python. 1. do you know a tutorial for this ? 2. do you know a Free IDE for Python (for windows) ? Thanks___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] passing arguments to functions - problem with argument order

2008-03-11 Thread tetsuo2k6
Alan Gauld schrieb: > > Fine, but I would seriously consider learning dicts as a prioritry. > Certainly way higher that learning OOP. In fact being comfortable > with dictionaries will make understanding OOP much easier > since a class is really just a special type of dictionary!. > > Alan G. >

Re: [Tutor] How to get MAC address using Python at Solaris

2008-03-11 Thread Alan Gauld
"Henry Zhang" <[EMAIL PROTECTED]> wrote > I am curious if there is any way in Python to get MAC address at > Solaris? I searched from google, didn't find a good idea. The recipe from Andreas is probably rthe best solution but you might be able you grep it out of the dmesg log file (or even usi

Re: [Tutor] passing arguments to functions - problem with argument order

2008-03-11 Thread Alan Gauld
<[EMAIL PROTECTED]> wrote >>> And I thought I might get away without using dicts... >> >> Why would you want to? Dicts are one of the most >> powerful data structures around. > Well, I know about dicts, however I want to go forward step by step > in > learning - once I feel really comfortable wi

Re: [Tutor] passing arguments to functions - problem with argument order

2008-03-11 Thread tetsuo2k6
Alan Gauld schrieb: > <[EMAIL PROTECTED]> wrote > >> And I thought I might get away without using dicts... > > Why would you want to? Dicts are one of the most > powerful data structures around. > > And besides Python is built from dicts so you can > never truly get away without using them. E

Re: [Tutor] How to get MAC address using Python at Solaris

2008-03-11 Thread Andreas Kostyrka
Alternatively, follow the recipe at http://www.tech-recipes.com/solaris_networking_tips785.html You can either just copy&paste the script and use that with popen, or you can reimplement it mostly in Python, calling the seperate programs. The basica gist of this seems to be, figure out your IP add

Re: [Tutor] How to get MAC address using Python at Solaris

2008-03-11 Thread Tim Golden
Henry Zhang wrote: > Hi there, > > I am curious if there is any way in Python to get MAC address at > Solaris? I searched from google, didn't find a good idea. Not tried it, but this looks hopeful at least: http://pypi.python.org/pypi/netifaces/0.4 TJG ___

[Tutor] How to get MAC address using Python at Solaris

2008-03-11 Thread Henry Zhang
Hi there, I am curious if there is any way in Python to get MAC address at Solaris? I searched from google, didn't find a good idea. So could anyone give some comment? Thanks, Henry ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman