Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

use python type hint for multiple return values

from typing import Tuple

def func() -> Tuple[str, str]:
    return 'a', 'b'
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #python #type #hint #multiple #return #values
ADD COMMENT
Topic
Name
5+3 =