#!/usr/bin/env python3
file = "/tmp/dummy"
with open(file, "w") as file:
    file.write("Dummy file generated by Python")
