Python基础画五星红旗
Posted w1502
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python基础画五星红旗相关的知识,希望对你有一定的参考价值。
Pycharm开发环境设置与熟悉。
练习基本输入输出:
print(\'你好,{}.\'.format(name))
uprint(sys.argv)
库的使用方法:
import ...
from ... import ...
条件语句:
if (abs(pos()))<1:
break
循环语句:
for i in range(5):
while True:
函数定义:
def mygoto(x,y):
def drawjx(r):
综合练习:画一面五星红旗,将代码与运行截图发布博客交作业。
# -*- coding: UTF-8 -*- from turtle import * def mygoto(x,y): up() goto(x,y) down() def draw(z): begin_fill() for i in range(5): forward(z) right(144) end_fill() setup(700,500,0,0) color("yellow") bgcolor("red") fillcolor("yellow") hideturtle() mygoto(-250,75) draw(100) mygoto(-130,150) draw(30) mygoto(-80,100) draw(30) mygoto(-80,40) draw(30) mygoto(-130,-10) draw(30) done()
以上是关于Python基础画五星红旗的主要内容,如果未能解决你的问题,请参考以下文章