1 Keyboard Input(键盘输入)
例 1:
1 | # Keyboard echo |
注:
函数:chr(i)
中文说明:
返回整数i对应的ASCII字符。与ord()作用相反。
参数x:取值范围[0, 255]之间的正数。
版本:该函数在python2和python3各个版本中都可用。不存在兼容性问题。
英文说明:
Return a string of one character whose ASCII code is the integer i. For example, chr(97) returns the string ‘a’. This is the inverse of ord(). The argument must be in the range [0..255], inclusive; ValueError will be raised if i is outside that range. See also unichr().
例 2:
1 | # control the position of a ball using the arrow keys |
2 Motion(运动)
1 | # Ball motion with an implicit timer |
3 Collisions(碰撞)
1 | import simplegui |
4 Velocity Control(控制速度)
1 | # control the velocity of a ball using the arrow keys |
本例与本文第 1 小节的例 2 的区别是,当按下按键后,并不是直接改变小球的位置,而是改变小球的速度向量,实现连续运动
5 Pong
1 | # from __future__ import division |