码迷,mamicode.com
首页 > 编程语言 > 详细

Python基础

时间:2018-03-14 22:12:54      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:img   红旗   pycharm   got   format   bubuko   turtle   ...   .com   

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):

画一面五星红旗:


import sys
import turtle
from turtle import *


sys.argv


def draw_star(n):
turtle.begin_fill()
for i in range(5):
turtle.forward(n)
turtle.right(144)
turtle.end_fill()


def mygoto(x,y):
turtle.up()
turtle.goto(x,y)
turtle.down()


turtle.bgcolor(‘red‘)
turtle.color(‘yellow‘)
turtle.fillcolor(‘yellow‘)
turtle.setup(600,400,120,120)
turtle.hideturtle()



mygoto(-250,75)
draw_star(80)


turtle.right(50)
mygoto(-140,150)
draw_star(30)


turtle.left(50)
mygoto(-110,100)
draw_star(30)


mygoto(-110,40)
draw_star(30)


turtle.left(50)
mygoto(-140,-10)
draw_star(30)


turtle.done(

 

技术分享图片

 

Python基础

标签:img   红旗   pycharm   got   format   bubuko   turtle   ...   .com   

原文地址:https://www.cnblogs.com/lawliet12/p/8570166.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!