Tue May 20 21:17:48 2025 args_test(): python version: 3.10.12 numpy version: 1.26.4 Count and print the arguments. The number of arguments was 4. Arg[0] = the program name = args.py Arg[1] = alpha Arg[2] = fred Arg[3] = 1.2 function_args_test(): function_args() demonstrates how to count and print function arguments when the number of arguments may vary. function_args(): Number of arguments on this call was 0 function_args(): Number of arguments on this call was 3 0. 1.1 1. -2.2 2. 3.3 function_args(): Number of arguments on this call was 4 0. 1 1. two 2. 3.3 3. (4, 5) args_test(): Normal end of execution. Tue May 20 21:17:48 2025