[Tutor] for Python tutor at Hyderabad

2012-12-03 Thread sree ganesh
hi all,
Are there any python expert in Hyderabad? please let me know as early as
possible.


-- 
Cheers,
Sree
___
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor


[Tutor] looking for python developper

2013-11-17 Thread sree ganesh
Hi I am looking for python developer who can work from home per day 2
hours. if any one has interest please let me know.
Regards
Ganesh


On 17 November 2013 09:40,  wrote:

> Send Tutor mailing list submissions to
> tutor@python.org
>
> To subscribe or unsubscribe via the World Wide Web, visit
> https://mail.python.org/mailman/listinfo/tutor
> or, via email, send a message with subject or body 'help' to
> tutor-requ...@python.org
>
> You can reach the person managing the list at
> tutor-ow...@python.org
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of Tutor digest..."
>
>
> Today's Topics:
>
>1. Class attribute error (reutest)
>2. Re: basic function concept (Dominik George)
>3. Re: Class attribute error (Dominik George)
>4. Re: basic function concept (Alan Gauld)
>5. Re: Class attribute error (Alan Gauld)
>6. Re: basic function concept (Alex Kleider)
>7. Fwd:  Need help on Python API programmig (Amit Saha)
>8. loop running twice? (Byron Ruffin)
>
>
> --
>
> Message: 1
> Date: Sat, 16 Nov 2013 09:13:13 -0800 (PST)
> From: reutest 
> To: tutor@python.org
> Subject: [Tutor] Class attribute error
> Message-ID: <1384621993288-5039199.p...@n6.nabble.com>
> Content-Type: text/plain; charset=us-ascii
>
> class myclass():
>
>   def test(self):
> print "print this line"
>
>
> if __name__ == '__main__':
>   myclass.run()
>
>
>
> --
> View this message in context:
> http://python.6.x6.nabble.com/Class-attribute-error-tp5039199.html
> Sent from the Python - tutor mailing list archive at Nabble.com.
>
>
> --
>
> Message: 2
> Date: Sun, 17 Nov 2013 00:56:10 +0100
> From: Dominik George 
> To: Byron Ruffin 
> Cc: tutor@python.org
> Subject: Re: [Tutor] basic function concept
> Message-ID: <20131116235610.gt5...@keks.naturalnet.de>
> Content-Type: text/plain; charset="utf-8"
>
> > main()
> >
> > Can someone tell me why main is not being given any arguments?
>
> Because you didn't write any there.
>
> -nik
>
> --
> Wer den Gr?nkohl nicht ehrt, ist der Mettwurst nicht wert!
>
> PGP-Fingerprint: 3C9D 54A4 7575 C026 FB17  FD26 B79A 3C16 A0C4 F296
> -- next part --
> A non-text attachment was scrubbed...
> Name: signature.asc
> Type: application/pgp-signature
> Size: 905 bytes
> Desc: Digital signature
> URL: <
> http://mail.python.org/pipermail/tutor/attachments/20131117/eef9967c/attachment-0001.sig
> >
>
> --
>
> Message: 3
> Date: Sun, 17 Nov 2013 00:55:11 +0100
> From: Dominik George 
> To: reutest 
> Cc: tutor@python.org
> Subject: Re: [Tutor] Class attribute error
> Message-ID: <20131116235510.gs5...@keks.naturalnet.de>
> Content-Type: text/plain; charset="utf-8"
>
> On Sat, Nov 16, 2013 at 09:13:13AM -0800, reutest wrote:
> > class myclass():
> >
> > def test(self):
> >   print "print this line"
> >
> >
> > if __name__ == '__main__':
> >   myclass.run()
>
> Is that a question?
>
> If I were to guess, I'd say you should have asked "Why does this say
> that myclass does not havea run method?". Then the simple answer is:
> Because, well, it doesn't! Why do you expect it to have one?
>
> -nik
>
> --
> Wer den Gr?nkohl nicht ehrt, ist der Mettwurst nicht wert!
>
> PGP-Fingerprint: 3C9D 54A4 7575 C026 FB17  FD26 B79A 3C16 A0C4 F296
> -- next part --
> A non-text attachment was scrubbed...
> Name: signature.asc
> Type: application/pgp-signature
> Size: 905 bytes
> Desc: Digital signature
> URL: <
> http://mail.python.org/pipermail/tutor/attachments/20131117/5d249c0d/attachment-0001.sig
> >
>
> --
>
> Message: 4
> Date: Sun, 17 Nov 2013 00:51:47 +
> From: Alan Gauld 
> To: tutor@python.org
> Subject: Re: [Tutor] basic function concept
> Message-ID: 
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> On 16/11/13 21:20, Byron Ruffin wrote:
> > def main(x, y, z):
> >
> >  print (x, y, z)
> >
> > def funct():
> >  x = 1
> >  y = 2
> >  z = 3
> >
> >  return x, y, z
> >
> >
> > main()
> >
> >
> > Can someone tell me why main is not being given any arguments?
>
> Because somebody made a mistake.
> I don't know if this is your code or something you found in a
> book or web page but whichever it's an error and Python won't
> run it.
>
> Also funct() is a waste of space since its never used...
>
> --
> Alan G
> Author of the Learn to Program web site
> http://www.alan-g.me.uk/
> http://www.flickr.com/photos/alangauldphotos
>
>
>
> --
>
> Message: 5
> Date: Sun, 17 Nov 2013 00:54:40 +
> From: Alan Gauld 
> To: tutor@python.org
> Subject: Re: [Tutor] Class attribute error
> Message-ID: 
> Content-Type: text/plain; charset=ISO-8859-1; format=flowed
>
> On 16/11/13 17:13, reutest wrote:
> >