Making python run faster on windows DC involves finding ways to work around the Global Interpreter Lock. You can try using multiprocessing for tasks that heavily use the CPU using libraries like NumPy or Pandas for number crunching and analyzing your code to find areas that are slowing it down. For tasks that are more focused on input output operations you might want to look into asynchronous programming. Another option is to try PyPy, a quicker version of Python. If you are working with big sets of data think about using specialized libraries such as Dask or Vaex. Keep in mind that optimizing your code often means making compromises so make sure to thoroughly test and analyze your changes.
I tried my best to help you...