2021-09-29-Learning notes P-3, Python

本文介绍了Python编程中的注释使用,强调了注释在代码解释中的作用,并通过实例展示了如何使用turtle库进行图形编程,绘制了一个字母F的图形。此外,探讨了Python中的循环结构,如for循环,并与C语言的循环进行了对比。文章适合初学者了解Python编程基础。

This article is the author's original, reproduced also please indicate the source.
This article only represents the author's own views, for reference only. If you have any objection, you are welcome to discuss.
Forrest
 

 

目录

1.Annotation

Example

2. Graphics programming

Example


​​​​​​​

1.Annotation

        In python, the annotation should start with charactor '#'. Then you could note down anything you want about your program. The caution will still be just in one row, if your note is over one row, you should always add '#' in front of your notes.

Example

        Let's see an example.

# this program intend to set a program to draw sth
# so firstly we use 'import' key word to import the 'turtle' class
# I assume 'turtle' is a class according to my experience of Java programming, as
# we all know, Java is an kind of objective programming language.
# so 't = turtle.Pen()' means to give birth to object 't' with a function of class
# <turtle>, then 'Pen()' should be a method for initialize 't'.
#
# @Forrest
import turtle
t = turtle.Pen()

# this is a formal for circle.
# as we all know, in C language, 'for' should be this way:
# for(x = 0, x > -100, x++) {
#      .........
#}
# so x = 0 is the key, x > -100 is the loop condition, x++ is after program finish
# doing the stuff in brackets, will do this step definitely.

for x in range(360):
    t.forward(x)
    t.left(59)

#so in C, this means
# for(x = 0, x < 360, x++) {
#   t.forward(x)
#   t.left(59)
#}

#in this program, you could adjust the value of 'x' to make the picture looks differently.

2. Graphics programming

        Let's show the code directly. By the way, in this part, there is no 'for circle' / ' variable defination'... which means people might be interested in this part, intend to improve their interest.

Example

Figure1:My first graph by python, it's an alphabet 'F'

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值