python简单应用题_Python简单应用题
                                                            生活随笔
收集整理的這篇文章主要介紹了
                                python简单应用题_Python简单应用题
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.                        
                                ..
..
1.
使用
turtle
庫繪制輪廓顏色為紅色(
red
)
、填充顏色為粉紅色(
pink
)的心形圖形,效
果如下圖所示。閱讀程序框架,補充橫線處代碼。
from?turtle?import?*
color('red',?____①____)
(____②____)
left(135)
fd(100)
right(180)
circle(50,
–
180)
left(90)
circle(50,
–
180)
right(180)
fd(100)
end_fill()
hideturtle()
done()
輸出
參考代碼:
from?turtle?import?*
color('red','pink')
begin_fill()
left(135)
fd(100)
right(180)
circle(50,-180)
left(90)
circle(50,-180)
right(180)
fd(100)
end_fill()
hideturtle()
done()
2.
使用
turtle
庫繪制紅色五角星圖形,
效果如下圖所示。
閱讀程序框架,
補充橫線處代碼。
(____①____)
總結(jié)
以上是生活随笔為你收集整理的python简单应用题_Python简单应用题的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
 
                            
                        - 上一篇: 699元 华硕推Wi-Fi 6小旋风路由
- 下一篇: 2021全球半导体设备厂商TOP15:A
