I am trying to define a basic function in python but I always get the following error when I run a simple test program;
>>> pyth_test(1, 2) Traceba
if working with IDLE installed version of Python
>>>def any(a,b): ... print(a+b) ... >>>any(1,2) 3