Re: [Tutor] Tutor Digest, Vol 141, Issue 11

2015-11-12 Thread Laura Creighton
In a message of Wed, 11 Nov 2015 17:18:06 +0500, Burhan ul haq writes: >Continuing "Run Python 2.7 on Android Tablet" > >Hi, > >I am constrained to install anything on my official laptop, therefore I >need to have an "online life saver" for Python Learning. > >I have already tried "pythonanywhere"

Re: [Tutor] question about descriptors

2015-11-12 Thread Albert-Jan Roskam
> To: tutor@python.org > From: __pete...@web.de > Date: Wed, 11 Nov 2015 20:06:20 +0100 > Subject: Re: [Tutor] question about descriptors > > Albert-Jan Roskam wrote: > > >> From: st...@pearwood.info > > >> Fortunately, Python has an mechanism for solving this problem: > >> the `__getattr__`

[Tutor] Python ASTM Implementation

2015-11-12 Thread Br. Sayan
Dear All, We have a Lab Analyzer(Cobas C311), which we want to interface with Pyhton. As you might be knowing that clinical lab analyzers use ASTM protocol. Python has a an ASTM module , but I need help in its implementation. In the first place, to my

Re: [Tutor] Python ASTM Implementation

2015-11-12 Thread Alan Gauld
On 12/11/15 11:23, Br. Sayan wrote: As you might be knowing that clinical lab analyzers use ASTM protocol. Nope, never heard of ASTM. Python has a an ASTM module , but I need help in its implementation. In the first place, to my embarrassment I

Re: [Tutor] The very first program in python

2015-11-12 Thread Mark Lawrence
On 12/11/2015 17:16, Sajjadul Islam wrote: Hello I have coded the first snippet in python - defined a function , then I am getting error if I try call the function from the IDLE window. The error is : Traceback (most recent call last): File "", line 1, in NameError: name 'print_lol' is

Re: [Tutor] The very first program in python

2015-11-12 Thread Alan Gauld
On 12/11/15 17:16, Sajjadul Islam wrote: Hello I have coded the first snippet in python - defined a function , Give us a clue - show us the code. getting error if I try call the function from the IDLE window. If you defined your function in a separate module using IDLE you can use the

Re: [Tutor] Python ASTM Implementation

2015-11-12 Thread Albert-Jan Roskam
> Date: Thu, 12 Nov 2015 16:53:20 +0530 > From: mokshavi...@gmail.com > To: tutor@python.org > Subject: [Tutor] Python ASTM Implementation > > Dear All, > > We have a Lab Analyzer(Cobas C311), which we want to interface with Pyhton. > As you might be knowing that clinical lab analyzers use

[Tutor] The very first program in python

2015-11-12 Thread Sajjadul Islam
Hello I have coded the first snippet in python - defined a function , then I am getting error if I try call the function from the IDLE window. The error is : /// Traceback (most recent call last): File "", line 1, in NameError: name 'print_lol' is not defined