RosettaCodeData/Task/Quine/Python/quine-2.py
2023-07-01 13:44:08 -04:00

2 lines
41 B
Python

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