Skip to content

Instantly share code, notes, and snippets.

@aveek22
Created December 29, 2020 13:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aveek22/05adb91beb0b69a26e9eab71ccf3ae9f to your computer and use it in GitHub Desktop.
Save aveek22/05adb91beb0b69a26e9eab71ccf3ae9f to your computer and use it in GitHub Desktop.
import json
def pos_arg(a,b,c):
print(f'The value of a is: {a}')
print(f'The value of b is: {b}')
print(f'The value of c is: {c}')
def main():
pos_arg(10,20,30)
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment