Last active
October 21, 2019 12:54
-
-
Save NMZivkovic/48775a6a2e6e99a42c7016860381f169 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
from typing import TypedDict | |
class Song(TypedDict): | |
artist: str | |
title: str | |
album: str | |
year: int | |
song: Song = {'artist': 'Nikola Nezit', 'title': 'Three Suns Halo', 'album': 'Triad', 'year': 2013} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment