I am making a simple class, here is the code:
class Player(object):
def __init__(self, character):
self.character= character
Sara = Player("Sara")
Nothing fancy, when ever i run this it gives the following result:
>>> print Sara
<__main__.Player object at 0xxxxxxxxx>
How can i stop the last line <main.Pl.....> from executing?