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.
什么是“更 Pythonic”/更有效/更好:
fp.write(some_long_string) fp.write('\n')
或者
fp.write(some_long_string + '\n')
fp.writelines([some_long_string])
如果您可以在没有函数调用的情况下逃脱:
print >>fp, some_long_string