栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Python

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

Python 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

2021-09-29-Learning notes P-3, 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.Annotaion

        In python, the annotaion 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
# , 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'

 

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/275613.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号