Copyleft Games
Into to Python documentation (twitter)
Documentation is vitally important for every software project. In this beginner task you'll demonstrate that you've learned to document a small Python class describing a person's twitter feed:
class Feed:
def post(self, content):
update_twitter(self, content)
Add a concise description for this class, method, and its one argument which is a string to be posted. If you're unfamiliar with Python you may need to research how to do this or ask for guidance in our webchat.
Submit the above function with your added annotations and documentation when you're done.
Task tags
Students who completed this task
AMehta