You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
''' the following is function that can be used to test how to use the terminal to run Python ocde. By saving this file as 'call.py', the sumOfArgs function can be called by running the '-c' command after navigating to the correct directory. '''
def sumOfArgs(a, b):
#print(a+b)
return a+b
# this function can be called from the terminal using the following command