-1
プログラムを実行しようとすると構文エラーが発生し、最後の行の印刷が赤で強調表示されます。なぜ構文エラーがあるのか分かりません。pythonのprintステートメントで無効な構文エラー3.2.2
# 6. Calculate the radius of the circle using the
# distance formula on a given point and the center
r = math.sqrt((a-x)** + (b-y)**
# 7. Output to the shell the location of the center
# of the circle
print("The center of the circle is at (",x,",", y,")",sep="")
# 8. Output to the shell the radius of the circle
print("The radius of the circle is " , r)
私はあなたが示唆したようにしようとしましたが、私はその閉じかっこで無効な構文エラーを取得しました。それをした – Jahe234
。どうもありがとうございます! – Jahe234