DEV Community

Discussion on: A short example of how types can make your life easier

Collapse
 
vlasales profile image
Vlastimil Pospichal • Edited

All items of enums are objects:

ab = Audiobook('mp3')
eb = Ebook('mobi')
pb = Paperback('A5')
hb = Hardback()        # select 1 of 4, eg. Paperback
order = book.save(pb)  # inject book format for save

You may create another formats in future, without change enum.