Python基础
Posted 146-王星宇
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):
画国旗代码
import turtle def mygoto(x,y): turtle.up() turtle.goto(x,y) turtle.down() def draw(r): turtle.begin_fill() for i in range(5): turtle.forward(r) turtle.right(144) turtle.end_fill() turtle.setup(600, 400) turtle.color("yellow") turtle.bgcolor("red") turtle.fillcolor("yellow") mygoto(-250,75) drawsatr(90) mygoto(-110,150) drawsatr(40) mygoto(-70,100) drawsatr(40) mygoto(-70,50) drawsatr(40) mygoto(-110,0) drawsatr(40) turtle.hideturtle() turtle.done()
以上是关于Python基础的主要内容,如果未能解决你的问题,请参考以下文章