Creates an empty Python file.
A simple example of a Python script:
def print_hi(name):
print(f'Hi, {name}')
if __name__ == '__main__':
print_hi('Python')