Skip to content

Instantly share code, notes, and snippets.

@SpikeXy
Last active October 2, 2017 01:48
Show Gist options
  • Save SpikeXy/7bf8371d363f2b0f85f4f4d0744015f6 to your computer and use it in GitHub Desktop.
Save SpikeXy/7bf8371d363f2b0f85f4f4d0744015f6 to your computer and use it in GitHub Desktop.
str #python
>>> class Student(object):
... def __init__(self, name):
... self.name = name
... def __str__(self):
... return 'Student object (name: %s)' % self.name
...
>>> print(Student('Michael'))
Student object (name: Michael)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment