Python 中的 Ruby 和 Perl 中的反引号等价物是什么?也就是说,在 Ruby 中我可以这样做:
foo = `cat /tmp/baz`
Python 中的等效语句是什么样的?我已经尝试过os.system("cat /tmp/baz"),但这会将结果标准化并返回给我该操作的错误代码。
os.system("cat /tmp/baz")
output = os.popen('cat /tmp/baz').read()