这是一个有效的奎因吗?

发布于 2024-09-05 18:25:42 字数 368 浏览 12 评论 0原文

def start(fileName):
  fileReader = open(fileName)
  for row in fileReader:
    print row,

if __name__ == "__main__":
  import sys
  if len(sys.argv) <= 1:
    print "usage quine /path/to/file"
    sys.exit(-1)
  fileName = sys.argv[0]
  start(fileName)
<块引用>

python quine.py foo

def start(fileName):
  fileReader = open(fileName)
  for row in fileReader:
    print row,

if __name__ == "__main__":
  import sys
  if len(sys.argv) <= 1:
    print "usage quine /path/to/file"
    sys.exit(-1)
  fileName = sys.argv[0]
  start(fileName)

python quine.py foo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乖不如嘢 2024-09-12 18:25:49

不, quine 不应该接受任何输入:

奎因不需要输入。允许输入将允许通过键盘将源代码提供给程序、打开程序的源文件以及类似的机制。

来自Quine(计算)

更新

您需要将源代码编码到 quine 本身中。 quine 由两部分组成:执行实际打印的代码和表示源代码的数据。这看起来是递归的,但实际上并非如此。对于一个好的 quine 教程,我建议查看此链接;我用它来用我设计的语言创建 quine。

No, a quine shouldn't take in any input:

A quine takes no input. Allowing input would permit the source code to be fed to the program via the keyboard, opening the source file of the program, and similar mechanisms.

From Quine (computing).

UPDATE

You need to encode the source into the quine itself. A quine consists of two parts: code that does the actual printing and data that represents the source code. It seems recursive, but isn't really. For a good quine tutorial, I recommend checking out this link; it's what I used to create a quine in a language that I designed.

几味少女 2024-09-12 18:25:49

Quines 无法访问文件系统,所以不行。正如维基百科所述,“允许输入将允许通过键盘将源代码提供给程序,打开程序的源文件,以及类似的机制。”。

参考:
维基百科:Quine(计算)

Quines can't access the filesystem, so no. As Wikipedia states, "Allowing input would permit the source code to be fed to the program via the keyboard, opening the source file of the program, and similar mechanisms.".

Reference:
Wikipedia: Quine (computing)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文