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.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'

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值