0
如何打印出Python腳本的內容?打印出Python腳本中的所有代碼
舉例來說,如果我有這樣的(例如沒有意義)腳本:
my_var = 1 + 1
another_thing = "this is my string"
我可以給它添加什麼路線,以獲得全部內容了?
my_var = 1 + 1
another_thing = "this is my string"
# Magically print out all of the code in this file
print .....