Create a directory named my_folder and navigate to that directory. Create two files named one.py and two.py in my_folder. Add the following Python code to one.py:
print('This is file one')
Write a similar program in two.py that prints This is file two.
When finished, run both programs with the python command.