我正在尝试创建一张中间有黑色圆圈的图片。
def Circle():
pic=makeEmptyPicture(200,200)
centre=(100,100)
for y in range (0,200):
for x in range (0,200):
value =int[( 200/(100-y^2)^.5)]
if value!= 0 and x <=value:
px=getPixel(pic,x,y)
setColor(px, makeColor(0,0,0))
return(pic)
我正进入(状态 The error was: 'int' and 'float'
我不知道如何将值解析为 int。