Skip to content

Instantly share code, notes, and snippets.

@aveek22
Created December 29, 2020 13:09
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