Skip to content

Instantly share code, notes, and snippets.

@gaganmanku96
Last active December 4, 2019 17:43
Show Gist options
  • Save gaganmanku96/220f31ffa171dbf51fa868913bfaa374 to your computer and use it in GitHub Desktop.
Save gaganmanku96/220f31ffa171dbf51fa868913bfaa374 to your computer and use it in GitHub Desktop.
from typing import Tuple
def add(first_value: int, second_value: int) -> Tuple[int, int]:
print(f"Sum = {first_value+second_value}")
return first_value, second_value
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment