第25862题 单选题
补全输出1-100(含)完全平方数的Python代码横线处语句

以下Python代码用于输出1-100(含)的整数平方数(完全平方数),如16是4的平方,横线处应填写()。

for i in range(1, 100 + 1):
    if _________________________:
        print(i)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析