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.
我在以下 python 脚本代码片段中遇到了问题。
p = subprocess.Popen([cmd,classname],stdout=subprocess.PIPE) (stdout, stderr) = p.communicate()
stdout 的长度应该是固定的 7850,但我一直得到的长度(大约 100 左右)远小于这个长度。有人可以解释一下问题是什么吗?