Skip to content
jasper-zanjani edited this page Aug 6, 2020 · 1 revision

typing.NamedTuple

As tuples, their attributes are immutable

class Starship(NamedTuple):
  name: str
  registry: str
  crew: int

Clone this wiki locally