# Simple Python script to print the source code of the current Python script # Append the output of this to your submission file with open(__file__, "r") as f: lines = f.readlines() for line in lines: print("# " + line, end="")