/
ssmih
/
Python
Обзор
Документация
Войти
/
ssmih
/
Python
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
other/quine.py
12 строк
359 B
pre-commit-ci[bot]
[pre-commit.ci] pre-commit autoupdate (#12623)
18 мар 2025, 11:53
Не верифицирован
18 мар 2025, 11:53
edf7c37
Код
Авторство
О чём код?
#!/bin/python3 # ruff: noqa: PLC3002 """ Quine: A quine is a computer program which takes no input and produces a copy of its own source code as its only output (disregarding this docstring and the shebang). More info on: https://en.wikipedia.org/wiki/Quine_(computing) """ print((lambda quine: quine % quine)("print((lambda quine: quine %% quine)(%r))"))