Skip to content

Instantly share code, notes, and snippets.

@RagingTiger
Created July 11, 2020 16:12
Show Gist options
  • Save RagingTiger/e67e0069eb66b551007f362354e89394 to your computer and use it in GitHub Desktop.
Save RagingTiger/e67e0069eb66b551007f362354e89394 to your computer and use it in GitHub Desktop.
Lex Fridman - Quine Example
# Ref: https://youtu.be/a-zEbokJAgY
# quine
s='s=%r;print(s%%s)';print(s%s)
# interactive intron
t='';s='t=input()or t;print(f"t={repr(t)};s={repr(s)};exec(s)#{t}")';exec(s)#
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment