I tried to run this python code:
#two brown number are an ordered pair in the form (m; n) such that n!+1=m^2
from math import factorial as fact
m=2
n=2
for i in range(10**2): # range of values to check
# checks current values and changes them according to results
if (fact(n)+1)==m**2:
print(m,n)
m+=1
n+=1
elif (fact(n)+1)<m**2:
n+=1
elif (fact(n)+1)>m**2:
m+=1
from the command prompt but it showed me the message on the image above, even though I already installed python 3.9 from the official website.
Anyone knows how to fix this or do I have to reinstall python from the Microsoft Store?