中央に黒い円がある画像を作成しようとしています。
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 に解析する方法がわかりません。