- 博客(11)
- 收藏
- 关注
转载 python习题教程 EP5
习题5:更多变量与打印程序代码:name = 'Zed A. Shaw'age = 35 # not a lieheight = 74 # inchesweight = 180 # lbseyes = 'Blue'teeth = 'while'hair = 'Brown'print(f"Let's talk about {name}.")print(f"He's {heig...
2019-07-25 21:40:49 273
转载 python习题教程 全50个 EP4
习题四:变量和命名程序代码:cars = 100space_in_a_car = 4.0drivers = 30passengers = 90cars_not_driven = cars - driverscars_driven = driverscarpool_capacity = cars_driven * space_in_a_caraverage_passengers_p...
2019-07-24 20:35:36 348
原创 python习题教程 全50个 (不定时更新)EP3
习题3:数字和数学计算程序代码:print("I will now count my chickens.")print("Hens", 25 + 30 / 6)print("Rooster", 100 - 25 * 3 % 4)print("Now I will count the eggs:")print(3 + 2 + 1 - 5 + 4 % 2 - 1 / 4 + 6)...
2019-07-23 20:49:29 421
原创 python习题教程 全50个 (不定时更新)EP2
习题2:注释和#号程序代码:1 # A comment, this is so you can read your program later.2 # Anything after the # is ignored by python.34 print("I could have code like this.") # and the comment after is ignore...
2019-07-22 21:25:27 250
转载 python习题教程 全50个 (不定时更新)EP1
习题1:第一个程序(程序名:ex1.py)程序代码:1 print(“Hello World.”)2 print(“Hello Again”)3 print(“I like typing this.”)4 print(“This is fun.”)5 print(‘Yay! printing.’)6 print(“I’d much rather you ‘not’.”)...
2019-07-21 20:58:48 222
转载 python习题教程 全50个 (不定时更新)EP0
本系列习题来自《“笨办法”学python3》【美】泽德 A. 肖 (Zed A. Shaw)习题0:准备工作用浏览器打开 https://atom.io,下载并安装 Atom 文本编辑器。在你的电脑上找到并运行 PowerShell(终端)到 https://www.python.org/downloads/release/ 下载python3.6 或 3.7注意!!千万不要使用集...
2019-07-21 20:38:18 126
转载 scratch贪吃蛇
玩家控制一条贪吃蛇,不断的在屏幕中运动,蛇身的运动完全跟随蛇头;屏幕中不断出现食物,玩家控制贪吃蛇吃掉食物,得分加一,贪吃蛇本身长度加一,吃得越多,蛇身越长,游戏难度越高,当蛇头撞到边缘或吃到自己则游戏结束。这次我们用Scratch实现这样一个经典的游戏。点击链接试玩:好好搭搭版贪吃蛇新建角色——贪吃蛇头部这里我们用小球组成贪吃蛇头部,下文中简称“头部”。编写头部脚本1——改变...
2019-06-02 18:35:33 9114
原创 SCRATCH弹球小游戏(免费教程)
游戏介绍:一个小球在屏幕中移动,碰到边缘反弹回来,下面有一块板在左右移动,接到球之后就反弹,没有接到球的话,则失败。角色区选中Paddle脚本区控制弹板,让弹板的X坐标跟随鼠标的X坐标变换。角色之弹球的编程弹球在整个游戏中是最重要的存在,它是一只在动的,针对它的程序会复杂一点角色区选中Ball我们让小球能够动起来:6、点击绿旗玩一下就会发现,就算弹板不接住弹球,游戏也不...
2019-06-02 14:08:25 9860
原创 UNO卡牌游戏 3.0 成品
UNO是一种牌类游戏,于1971年由Merle Robbins发明,由于游戏规则中,当玩家手上只余下一张牌时,必须喊出"UNO",因而得名。UNO是西班牙语和意大利语中“1”的意思。网址:https://scratch.mit.edu/projects/313043520/...
2019-05-26 18:36:54 4453
原创 scratch3.0版跑酷作品(可改编)
我制作了一个scratch3.0版的跑酷作品。大家可以学习,也可以指出不足网址;https://scratch.mit.edu/projects/313042734/
2019-05-26 18:12:27 22342 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人