Finally! Microsoft did it! Put python in MS Excel! And I was able to install it and test it on my machine!
The video of my attempts is here below:
The “code” is that one:
1 2 3 4 5 6 7 |
def factorial(a): print(a) if (a == 0) or (a == 1): return 1 return a * factorial(a - 1) factorial(5) |
Enjoy it!