元组的串联

发布于 2024-12-01 12:47:07 字数 324 浏览 1 评论 0原文

  1. 普通文本:

    • 我在 python 3.2.1 上编码时遇到一些问题。事实上,我正在参加有关 python 2.5 的在线讲座。
  2. 这是代码:

    <前><代码>x = 100 除数 = () 对于范围 (1,x) 内的 i: 如果 x%i == 0: 除数 = 除数 + (i)
  3. 运行程序时,出现以下错误:

    除数 = 除数 + (i)  
    类型错误:只能将元组(不是“int”)连接到元组
    
  1. Normal text:

    • I'm having some problems with coding on python 3.2.1. Actually I'm taking online lectures that are on python 2.5.
  2. Here is the code:

    x = 100
    divisors = ()
    for i in range(1,x):
        if x%i == 0:
            divisors = divisors + (i)
    
  3. on running the program, following error appears:

    divisors = divisors + (i)  
    TypeError: can only concatenate tuple (not "int") to tuple
    

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

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

发布评论

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

评论(2

雪化雨蝶 2024-12-08 12:47:07

(1) 不是一个元组,它只是一个带括号的表达式。要使其成为元组,请添加尾随逗号 (1,)

(1) is not a tuple, its just a parenthesized expression. To make it a tuple, add a trailing comma, (1,)

难如初 2024-12-08 12:47:07

尝试改用它:

divisors.append(i)

编辑:

divisors = []

因为您无法附加元组。

Try to use this instead:

divisors.append(i)

Edit:

divisors = []

since you can't append on tuples.

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