Skip to content

Instantly share code, notes, and snippets.

@kshirsagarsiddharth
Created July 19, 2020 17:11
Show Gist options
  • Select an option

  • Save kshirsagarsiddharth/edf7880324a9d1b9223a6de39e979764 to your computer and use it in GitHub Desktop.

Select an option

Save kshirsagarsiddharth/edf7880324a9d1b9223a6de39e979764 to your computer and use it in GitHub Desktop.
immutable named tuples
from collections import namedtuple
animal = namedtuple('animal',['species_name','legs_no','color'])
dog = animal('canine',4,'white')
dog.legs_no = 78
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment