#TIMEOUT in Python on Excel

Alejandro Campos 5 Reputation points
2024-02-22T18:04:44.9466667+00:00

Hello all, with this code in Python for Excel, gives #TIMEOUT Error. Any solution?. Thanks in advance

import hashlib ip='cxdnnyjw' ans='' ans2='????????' for i in range(10**8):     h=hashlib.md5((ip+str(i)).encode()).hexdigest()     if h.startswith('00000'):         pos=h[5]         ans=ans+pos         if pos in '01234567' and ans2[int(pos)]=='?':             ans2=ans2[:int(pos)]+h[6]+ans2[int(pos)+1:]             if ans2.find('?')==-1:                 break print('ans1:',ans[:8]) print('ans2:',ans2)

Excel
Excel
A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
1,519 questions
Office Development
Office Development
Office: A suite of Microsoft productivity software that supports common business tasks, including word processing, email, presentations, and data management and analysis.Development: The process of researching, productizing, and refining new or existing technologies.
3,562 questions
{count} vote