1 2 3 4 5
def dashify(string): return string.replace('_', '-') def touch(filename): open(filename, "a").close()