当我尝试在下面运行python代码时,turtle.color如何将输入解释为数字?
import turtle
for i in ['red', 'blue', 'green', 'pink', 8, 10]:
turtle.color(i)
turtle.forward(100)
turtle.right(90)
实际:
我得到的输出是一个正方形,正方形按给定顺序排列。
到达turtle.color(8)
时,其中一侧会被黑色覆盖,
其次是下一个(turtle.color(10)
)。
预期:
该代码应该错误为turtle.color(8)
,没有意义!
我实际上是使用在线乌龟编译器来测试我的代码(repl.it/languages/python_turtle)。
答案 0 :(得分:2)
在他们的blog中,代表提到他们使用skulpt作为其webIDE。
Skulpt的Github页显示以下功能,建议默认为“黑色”。这解释了调试时您所看到的与其他行为相比的奇怪行为。
function createColor(color, g, b, a) {
var i;
if (g !== undefined) {
color = [color, g, b, a];
}
if (color.constructor === Array && color.length) {
for(i = 0; i < 3; i++) {
color[i] = (typeof color[i] === "number") ?
Math.max(0, Math.min(255, parseInt(color[i]))) :
0;
}
if (typeof color[i] === "number") {
color[3] = Math.max(0, Math.min(1, color[i]));
color = "rgba(" + color.join(",") + ")";
}
else {
color = "rgb(" + color.slice(0,3).join(",") + ")";
}
}
else if (typeof color === "string" && !color.match(/\s*url\s*\(/i)) {
color = color.replace(/\s+/g, "");
}
else {
return "black";
}
return color;
}