Python基础

Posted wha000

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

 

综合练习:画一面五星红旗,将代码与运行截图发布博客交作业。

from turtle import *

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

setup(600,400,0,0)
color(\'yellow\')
bgcolor(\'red\')
fillcolor(\'yellow\')

mygoto(-250,75)
begin_fill()
for i in range(5):
    forward(100)
    right(144)
end_fill()

mygoto(-100,150)
begin_fill()
for i in range(5):
    forward(50)
    right(144)
end_fill()

mygoto(-50,100)
begin_fill()
for i in range(5):
    forward(50)
    right(144)
end_fill()

mygoto(-50,50)
begin_fill()
for i in range(5):
    forward(50)
    right(144)
end_fill()

mygoto(-100,0)
begin_fill()
for i in range(5):
    forward(50)
    right(144)
end_fill()

done()

 

  

以上是关于Python基础的主要内容,如果未能解决你的问题,请参考以下文章

常用python日期日志获取内容循环的代码片段

python 有用的Python代码片段

Python 向 Postman 请求代码片段

python [代码片段]一些有趣的代码#sort

使用 Python 代码片段编写 LaTeX 文档

python 机器学习有用的代码片段