RosettaCodeData/Task/Quine/Python/quine-2.py

3 lines
41 B
Python

x = 'x = %r\nprint(x %% x)'
print(x % x)