📝 Edit page
➕ Add page
Tuple
Tuple[TYPE, TYPE, ...]
e.g.
from typing import Tuple
def foo() -> Tuple[bool, str]:
return True, 'Yes'