On 25/05/13 09:41, bob gailer wrote:
On 5/22/2013 1:02 AM, Andrew Triplett wrote:
... illegal variable names ...
That is a very poor description. Something can either be used as a variable
name or not.
abc can be used as a variable name, if can't.
But it can be used as a variable name in so
On 5/22/2013 1:02 AM, Andrew Triplett wrote:
... illegal variable names ...
That is a very poor description. Something can either be used as a
variable name or not.
abc can be used as a variable name, if can't.
I defy you to give me a variable name that is illegal! Anything you
attempt to gi
Hi Andrew,
I'm sure the exercises at the end of the each chapters are there for you to
attempt. Asking for help here without attempting it is not the best way to
learn.
If however, you've tried something - and it didn't work, by all means ask
for help.
In the mean time show us what you have so fa
On Wed, May 22, 2013 at 6:02 AM, Andrew Triplett wrote:
> I am on chapter two for Python Programming working on the challenges and the
> question is:
>
> 1. Create a list of legal and illegal variable names. Describe why each is
> either legal or illegal. Next, create a list of "good" and "bad" le
Andrew Triplett wrote:
> I am on chapter two for Python Programming working on the challenges and
> the question is:
>
> 1. Create a list of legal and illegal variable names. Describe why each is
> either legal or illegal. Next, create a list of "good" and "bad" legal
> variable names. Describe w
I am on chapter two for Python Programming working on the challenges and the
question is:
1. Create a list of legal and illegal variable names. Describe why each is
either legal or illegal. Next, create a list of "good" and "bad" legal variable
names. Describe why each is either a good or bad c
On Tue, 2009-09-22 at 05:13 -0700, Ali Sina wrote:
> Hello tutor
>
> I downloaded a guide about learning Python by Michael Dawson which has
> challenges at the end of each chapter. I'm a novice so I encountered a
> problem with this challenge:
>
>
>
> "Write a program that flips a coin 100 time
Date: Tue, 22 Sep 2009 05:13:32 -0700 (PDT)
From: Ali Sina
To: tutor@python.org
Subject: [Tutor] Challenge
Message-ID: <826729.63168...@web45911.mail.sp1.yahoo.com>
Content-Type: text/plain; charset="iso-8859-1"
Hello tutor
I downloaded a guide about learning Python by Mich
> I wrote this code but I know its wrong. Although it works properly:
> flips=0
> h='heads'
> t='tails'
> while True:
>flips+=1
>if flips>100:
>break
>if True:
>print(flips,'=',h or t)
> But
it prints every number with the string 'heads'. I'm really blank at
this. It
Ali Sina wrote:
I wrote this code but I know its wrong. Although it works properly:
Thereis adfference between "works properly" (ie does what it should) and
"runs without errors" :-)
You need to read up a bit more on boolean expressions
flips=0
h='heads'
t='tails'
while True:
flips+=1
hon.org
>Sent: Tuesday, September 22, 2009 5:13:32 AM
>Subject: [Tutor] Challenge
>
>
>Hello tutor
>
>I downloaded a guide about learning Python by Michael Dawson which has
>challenges at the end of each chapter. I'm a novice so I encountered a problem
>with this challe
On Tue, Sep 22, 2009 at 9:13 AM, Ali Sina wrote:
> But it prints every number with the string 'heads'. I'm really blank at
> this. It may have something to do with the 'random' module.
>
> You could use the choice function on random.
Given a list, the choice function returns a random element of
Hello tutor
I downloaded a guide about learning Python by Michael Dawson which has
challenges at the end of each chapter. I'm a novice so I encountered a problem
with this challenge:
"Write a program that flips a coin 100 times and then tells
you the number of heads and tails."
I wrote this co
"Kent Johnson" wrote
> We can fake the Delphi style by using a default constructor and then
> just
> calling the "constructors" after initialisation:
> But its two lines not one... :-(
Why not this?
class C:
def __init__(self): pass
@staticmethod
def LoadFromFile(fname, count):
c
"Kent Johnson" wrote
But its two lines not one... :-(
Why not this?
class C:
def __init__(self): pass
@staticmethod
def LoadFromFile(fname, count):
c = C()
# init c from the file
return c
and similar for Create(). Client code is one line:
c = C.LoadFromFile(fn, cnt)
Kent
On Mon, Jun 1, 2009 at 3:55 PM, Alan Gauld wrote:
>
> "W W" wrote
>
>> class C:
>>> @constructor
>>> def LoadFromFile(fname, count): ...
>>> @constructor
>>> def Create(valueTuple):...
>>>
>>> Personally I prefer the Delphi style sincve it makes the constructor
>>> call explicit and adds
On Mon, Jun 1, 2009 at 4:55 PM, Alan Gauld wrote:
> We can fake the Delphi style by using a default constructor and then just
> calling the "constructors" after initialisation:
>
> class C:
> def __init__(): pass
> @constructor
> def LoadFromFile(fname, count): ...
> �...@c
"W W" wrote
class C:
@constructor
def LoadFromFile(fname, count): ...
@constructor
def Create(valueTuple):...
Personally I prefer the Delphi style sincve it makes the constructor
call explicit and adds to the documentation.
Alan G
That does make it problematic... although I sup
On Mon, Jun 1, 2009 at 8:59 AM, Alan Gauld wrote:
>
> "W W" wrote
>
> ( Multiple constructors (or factory methods) is one feature I would like
>>> to see added to Python! )
>>>
>>
>> Wouldn't it be possible to create sort of a... bastardization? i.e.
>>
>> def __init__(self, *args):
>> if len
Chris,
Thanks for your well-written reply. Your analogy to the
complexities of other special methods is well noted. I'll accept
the "small price for flexibility" that you note, if necessary.
However, I still desire a cleaner solution.
I can examine the inherited slots to see which sp
"W W" wrote
( Multiple constructors (or factory methods) is one feature I would
like
to see added to Python! )
Wouldn't it be possible to create sort of a... bastardization? i.e.
def __init__(self, *args):
if len(args) == 0:
#do something
if len(args) == 1:
#do somethin
On Mon, Jun 1, 2009 at 2:27 AM, Alan Gauld wrote:
>
> "Kent Johnson" wrote
>
>> > Yesterday, I posted a question to python-list involving custom
>> > deepcopies in an inheritance hierarchy. I haven't received any
>>
>> ISTM that in general B.__deepcopy__() should call A.__deepcopy__() to do
>> th
"Kent Johnson" wrote
> Yesterday, I posted a question to python-list involving custom
> deepcopies in an inheritance hierarchy. I haven't received any
ISTM that in general B.__deepcopy__() should call
A.__deepcopy__() to do the "A" part of the work. In your example,
this won't work because
On Sun, May 31, 2009 at 5:35 PM, Michael H. Goldwasser wrote:
>
> Yesterday, I posted a question to python-list involving custom
> deepcopies in an inheritance hierarchy. I haven't received any
> responses, so I thought I'd cross-post to see if anyone on tutor
> has any thoughts.
>
> To avoid spl
Yesterday, I posted a question to python-list involving custom
deepcopies in an inheritance hierarchy. I haven't received any
responses, so I thought I'd cross-post to see if anyone on tutor
has any thoughts.
To avoid splitting the thread, I'll simply reference the original post at
http://mail.p
Lisa and all,
I got rid of that portion of my site. All that's there now is the e-book
publishing part of my site.
Nathan Pinno
- Original Message -
From:
Lisa Fukui
To: Nathan Pinno
Sent: Friday, September 30, 2005 11:22
AM
Subject: Re: [Tutor] Challenge [w
Original Message -
From:
Adam
To:
Nathan Pinno
Cc:
bob ; tutor@python.org
Sent: Monday, September 26, 2005 3:37
PM
Subject: Re: [Tutor] Challenge [was Re:
Why won't it enter the quiz?]
Can I have a look at the password program by any
chance?
Tutor
Cc:
bob ; tutor@python.org
Sent: Monday, September 26, 2005 3:37
PM
Subject: Re: [Tutor] Challenge [was Re:
Why won't it enter the quiz?]
Can I have a look at the password program by any
chance?
Tutor
maillist - Tutor@python.org
http://mail.python.org/m
At 10:56 AM 9/26/2005, Nathan Pinno wrote:
The actual URL is
http://zoffee.tripod.com/purchasecompprogs.htm
I did what you suggested. Take another look, and tell me if you were a potential customer, would you purchase something?
No. For one thing I can (if I didn't already have one) buy a "re
Can I have a look at the password program by any chance?
Tutor maillist -
Tutor@python.orghttp://mail.python.org/mailman/listinfo/tutor
___
Tutor maillist - Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor
The actual URL is http://zoffee.tripod.com/purchasecompprogs.htm
- Original Message -
From:
bob
To: Nathan Pinno
Cc: tutor@python.org
Sent: Monday, September 26, 2005 11:54
AM
Subject: Re: [Tutor] Challenge [was Re:
Why won't it enter the quiz?]
At
he page or the file that you're looking for is not here.
Why not take the challenge? It's not like I'm asking much.
Nathan Pinno
- Original Message -
From: bob
To: Nathan Pinno
Cc: tutor@python.org
Sent: Thursday, September 22, 2005 10:08 PM
Subject: Re: [Tuto
Cc: tutor@python.org
Sent: Thursday, September 22, 2005 10:08
PM
Subject: Re: [Tutor] Challenge [was Re:
Why won't it enter the quiz?]
At 06:42 PM 9/22/2005, Nathan Pinno wrote:
The URL is http://zoffee.tripod.com/purchasecomprogs.htm[snip]At
your invitation I visited the site. I p
bob wrote:
> At 06:42 PM 9/22/2005, Nathan Pinno wrote:
>
>> The URL is http://zoffee.tripod.com/purchasecomprogs.htm
>
>
> [snip]
>
> At your invitation I visited the site. I personally would not purchase
> anything listed there due to insufficient information. I don't know what
> I'm gettin
At 06:42 PM 9/22/2005, Nathan Pinno wrote:
The URL is
http://zoffee.tripod.com/purchasecomprogs.htm
[snip]
At your invitation I visited the site. I personally would not purchase
anything listed there due to insufficient information. I don't know what
I'm getting!
I suggest you dedicate a page to
riginal Message -
From:
Adam
To: Nathan Pinno
Sent: Thursday, September 22, 2005 5:21
AM
Subject: Re: [Tutor] Challenge [was Re:
Why won't it enter the quiz?]
What's the URL?
On 22/09/05, Nathan
Pinno <[EMAIL PROTECTED]>
wrote:
I
have a challenge
http://zoffee.tripod.com/purchasecompprogs.htm
is the URL.
- Original Message -
From:
Adam
To: Nathan Pinno
Sent: Thursday, September 22, 2005 5:21
AM
Subject: Re: [Tutor] Challenge [was Re:
Why won't it enter the quiz?]
What's the URL?
O
I have a challenge for everyone on the tutor list. Take this serious, and
don't think I'm asking it just because I am mad or something. I'm not, I
just want to clear the air once and for all. Here is the challenge:
Choose any program that I am selling on my site, any one of them, and ask me
for
38 matches
Mail list logo