How can I print out the contents of a Python script?
For example, if I have this (pointless example) script:
my_var = 1 + 1
another_thing = "this is my string"
What line can I add to it, to get the entire contents back?
my_var = 1 + 1
another_thing = "this is my string"
# Magically print out all of the code in this file
print .....