Ben Finney wrote:
> Apparently that learning also didn't include the prohibitions against
> colluding with others. Nevertheless, I'll bet they are still present.
http://www.csu.edu.au/acad_sec/manuals/gcontm.htm
Part G6
Collusion
A student colludes when he or she works without
Bruno Desthuilliers <[EMAIL PROTECTED]> writes:
> Arun Nair wrote:
> > [more homework assignments, not working]
> Do you really expect us to run your code, fix the bugs and send it
> back?
Yes, he apparently does. He's told us that it's homework, but that he
hasn't learned enough from his teacher
On 2006-10-26, Arun Nair <[EMAIL PROTECTED]> wrote:
> import string
>
> class Card:
Could you please keep this homework assignment in a single
thread in order to make it easier to ignore for those of us who
don't want to work on this particular homework problem for you?
If not, then you're likely
Arun Nair wrote:
[stuff]
You will find people are willing to help, even sometimes with homework
questions, when questioners show some evidence that they are looking to
learn rather than simply to have their problems solved for them.
regards
Steve
--
Steve Holden +44 150 684 7255 +1 80
Bruno Desthuilliers wrote:
> Please take a few minutes to read this:
> http://catb.org/esr/faqs/smart-questions.html
or better, check if the the academic misconduct rules for the university you're
attending happens to say anything about "collusion".
--
http://mail.python.org/mailman/listin
Arun Nair wrote:
> import string
You don't need it. Use "some string".split() instead
> class Card:
class Card(object):
> # Not sure if I need to set these first???
Not only do you need to define them, but it would probably be a good
idea to populate them. And BTW, () is a tuple, not a lis
import string
class Card:
# Not sure if I need to set these first???
# suitList = ()
# rankList = ()
def __init__(self,suit,rank):
self.suit = suit
self.rank = rank
def __repr__(self):
return str(self)
def __str__(self):
return "%s of %s"