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