Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #40285
| From | leonardo selmi <l.selmi@icloud.com> |
|---|---|
| Subject | need for help |
| Date | 2013-03-01 19:35 +0100 |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.2750.1362166527.2939.python-list@python.org> (permalink) |
hi guys
i typed the following program:
class ball:
def _init_(self, color, size, direction):
self.color = color
self.size = size
self.direction = direction
def _str_(self):
msg = 'hi, i am a ' + self.size + ' ' + self.color + 'ball!'
return msg
myball = ball('red', 'small', 'down')
print my ball
BUT I GOT THIS ERROR:
Traceback (most recent call last):
File "/Users/leonardo/Documents/ball2.py", line 11, in <module>
myball = ball('red', 'small', 'down')
TypeError: this constructor takes no arguments
can you kindly tell me what is wrong?
thanks a lot!
Back to comp.lang.python | Previous | Next — Next in thread | Find similar | Unroll thread
need for help leonardo selmi <l.selmi@icloud.com> - 2013-03-01 19:35 +0100 Re: need for help Alister <alister.ware@ntlworld.com> - 2013-03-01 22:01 +0000 Re: need for help Rick Johnson <rantingrickjohnson@gmail.com> - 2013-03-01 14:59 -0800
csiph-web