Gunakan petunjuk tipe python untuk beberapa nilai pengembalian

from typing import Tuple

def func() -> Tuple[str, str]:
    return 'a', 'b'
Careful Caiman