Exercise: Calculator (argv)
- Create a script called basic2_calculator_argv.py that accepts 2 numbers and an operator
(+, -, *, /), on the command line and prints the result of the operation. python basic2_calculator_argv.py 2 + 3python basic2_calculator_argv.py 6 / 2python basic2_calculator_argv.py 6 * 2