Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sys.stdout.flush() 不适用于 aptana。我试过了 :
import sys import time for count in range(100) : sys.stdout.write("\r" str(count) + "%") sys.stdout.flush() time.sleep(1)
冲洗不适用于 aptana。我有类似的东西:
1% 2% 3% ....
谢谢
问题不在于冲洗,而是将 '\r' 打印到控制台。Aptana 使用 PyDev,而 PyDev 的终端不是真正的终端。关于处理 PyDev 控制台的问题有很多。 似乎 PyDev 的控制台并不打算处理这个问题。您最好的选择是在真正的控制台上尝试一下。