【Perl,Python,PHP】LL バトルロワイヤル 27【JS,Ruby】

このエントリーをはてなブックマークに追加
932デフォルトの名無しさん
import s
for x in xrange(32768):
  for y in xrange(32768):
    for z in xrange(32768):
      d = 'c:/test/%030d/%030d/%030d' % (z, y, x)
      os.makedirs(d)
      f = os.path.join(d, '%030d_%030d_%030d.txt' % (x, y, z))
      p = open(f, 'wb')
      p.write(f)
      p.close()
      print f