#!/usr/local/bin/python2 import uuid for n in range(10): f = str(uuid.uuid4).replace("-", "") print("File: {}".format(f)) open(f, "w").write("A")