Created
March 9, 2019 16:27
-
-
Save AdamGold/83afc1ecc510ae119e35c191d374c275 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In [6]: import collections | |
In [7]: Article = collections.namedtuple("Article", ["title", "description", "id"]) | |
In [8]: Article(title="Python is cool.", id=1, description="") | |
Article(title='Python is cool.', description='', id=1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment