Guest User

Untitled

a guest
Aug 20th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. class MusicFile(object):
  2. pass
  3.  
  4. class MP3(MusicFile):
  5. pass
  6.  
  7. class Midi(MusicFile):
  8. pass
  9.  
  10. def file_processor(file_type):
  11. known_types = ['mp3': MP3, 'mid': Midi]
  12. if file_type in known_types: return known_types[file_type]()
  13. raise NotImplementedError()
Add Comment
Please, Sign In to add comment