#Ex 4.7 from A primer on ... import sys value = sys.argv[1] result = eval(value) print(result,type(result)) """ Terminal> python objects_cml.py 3 3 Terminal> sundnes$ python objects_cml.py [3,4] [3, 4] Terminal> sundnes$ python objects_cml.py (1,1) -bash: syntax error near unexpected token `(' Terminal> sundnes$ python objects_cml.py "(1,1)" (1, 1) Terminal> sundnes$ python objects_cml.py "'this is a string'" this is a string """