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

361

被折叠的 条评论
为什么被折叠?



