Files
example-code-2e/05-record-like/meaning/demo_nt.py
Luciano Ramalho 1df34f2945 ch05: new chapter
2020-02-19 00:11:45 -03:00

8 lines
135 B
Python

import typing
class DemoNTClass(typing.NamedTuple):
a: int # <1>
b: float = 1.1 # <2>
c = 'spam' # <3>