Skip to content

Instantly share code, notes, and snippets.

@pralabhsaxena05
Created December 10, 2021 07:45
Show Gist options
  • Save pralabhsaxena05/ae536c4877a348afa440c7ebbd7495be to your computer and use it in GitHub Desktop.
Save pralabhsaxena05/ae536c4877a348afa440c7ebbd7495be to your computer and use it in GitHub Desktop.
def calc(a, b):
add = a+b
sub = a-b
mul = a*b
return add, sub, mul
add, sub, mul = calc(20, 10)
print(add)
print(sub)
print(mul)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment