![]() |
Mytime Problems - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: Mytime Problems (/thread-36787.html) |
Mytime Problems - DaveG - Mar-30-2022 Hi I'm getting the error with the use of mytime. Is this part of a library? Thank you, Dave
with open(file_ls, "w") as output: output.write("%d %d %d" % (np.shape(kxx)[1], np.shape(kxx)[0], collapse_steps)) for ii in np.arange((np.shape(kxx)[1])): print("%.8f" % (kxx[0, ii]), file=output) ### for ii in arrange(shape(kyy)[0]): for ii in np.arange(np.shape(kyy)[0] - 1, -1, -1): print("%.8f" % (kyy[ii, 0]), file=output) for ii in np.arange(collapse_steps): print("%.8f" % mytime, file=output)] RE: Mytime Problems - deanhystad - Mar-30-2022 What is mytime? I don't see it as a package anywhere. Can you list the imports at the top of the module? That might provide some hits. |