School Assignment? Project Due Tomorrow? Chat LIVE With A Programming Expert!

Welcome to Dream.In.Code
Become an Expert!

Join 300,440 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,511 people online right now. Registration is fast and FREE... Join Now!




How do i call methods in python?

 

How do i call methods in python?

xZachtmx

14 Jun, 2009 - 06:19 AM
Post #1

New D.I.C Head
*

Joined: 14 Jun, 2009
Posts: 38



Thanked: 1 times
My Contributions
ok this is probably an easy question..

but i have a method like this

def draw(self):
screen.blit(self.shipTexture, (self.position))

but i dont know how to call it in the main loop...

User is offlineProfile CardPM
+Quote Post


xZachtmx

RE: How Do I Call Methods In Python?

14 Jun, 2009 - 06:29 AM
Post #2

New D.I.C Head
*

Joined: 14 Jun, 2009
Posts: 38



Thanked: 1 times
My Contributions
oops nevermind figured it out on my own... the draw method was part of a class... so i jsut had to put

ship.draw(playerShip)

rather than

draw(playerShip)
User is offlineProfile CardPM
+Quote Post

code_m

RE: How Do I Call Methods In Python?

14 Jun, 2009 - 04:25 PM
Post #3

D.I.C Head
**

Joined: 21 Apr, 2009
Posts: 118



Thanked: 8 times
My Contributions
also note that a variable of that class you created can call your function:
python

>>> class foo(object):
... def __init__(self, value):
... self.value = value
... def __repr__(self):
... return self.value
... def cube(self):
... return self.value ** 3
>>> x = foo(8)
>>> x.cube() ## equivalent to : x = foo.cube(x)
>>> x
512


;-) I just wanted to make sure you knew that, as it's really bad syntax to pass a value to self explicitly (this is one of them cases where explicit isn't best)

This post has been edited by code_m: 14 Jun, 2009 - 04:28 PM
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic

Time is now: 11/8/09 01:11AM

Live Help!

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter Fan Us On Facebook

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month