0
我想繪製一個與動態龜對應的餅圖,並且可以對提供的不同數據組作出反應,但由於某些原因,它並未畫出使得段。不能繪製動態餅圖
是否有人能夠幫助識別我的代碼中的問題,以便按照我的意圖執行segment()
?
chart_title = 'Tourism GDP by States/Territories in Australia'
segment_labels = ['QLD', 'VIC', 'NSW', 'SA', 'WA', 'TAS', 'NT', 'ACT']
percentages = [0.24, 0.22, 0.328, 0.06, 0.082, 0.03, 0.02, 0.02]
from turtle import *
radius = 200
penup()
forward(radius)
left(90)
pendown()
color('palegreen')
begin_fill()
circle(radius)
end_fill()
home()
right(90)
color('black')
def segment(percentages):
for _ in percentages[:]:
radius=200
percent_to_heading=((percentages*100)/360)*100
setheading(percent_to_heading)
pendown()
forward(radius)
penup()
home()