Before trying anything from QlikView to execute a program outside of it. Please follow the steps mentioned in the below link. I have created a small program for evenodd as below and saved it as evenorodd.pyBelow is the python programimport timenum = int(input(“Enter a number: “))if (num % 2) == 0:print(“Number is Even”)else:print(“Number is Odd”)time...
Integrating Python from QlikView
I