Created
September 18, 2021 02:34
-
-
Save JosephTLyons/289852b86e47a72229969813ab46e671 to your computer and use it in GitHub Desktop.
Silly Twitter challenge of writing an application that prints its own source code
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with open("./meta_print.py", "r") as file: | |
for line in file: | |
print(line, end="") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment