Song
少儿编程侯老师
这个作者很懒,什么都没留下…
展开
-
song -接小球游戏1
import pygame# 初始化pygame.init()# play 玩 dis 分开 美术馆 展览展示ping_mu = pygame.display.set_mode((600,500))# 设置标题pygame.display.set_caption("Minecraft")ballx = 300while 1>0: # 鼠标//键盘 for caozuo in pygame.event.get(): print(caozuo)原创 2020-06-27 13:48:58 · 196 阅读 · 0 评论 -
song -用函数画彩虹
import turtle# 专业术语:函数def mo_mo(): turtle.lt(90) turtle.color("purple") turtle.pensize(20) turtle.circle(20,180) turtle.lt(180) turtle.color("blue") turtle.pensize(20) turtle.circle(-40,180)mo_mo()turtle.done()原创 2020-06-12 17:48:45 · 288 阅读 · 0 评论 -
song -皮卡丘版本的字典
pi_ka_qiu={"姓名":"皮卡丘","技能1":"十万伏特"}penghuolong={"姓名":"喷火龙","技能":"喷火"}a=input ("你选哪个神奇宝贝,有pi_ka_qiu,penghuolong")if a==pi_ka_qiu["姓名"]: print("你选择了皮卡丘") print(pi_ka_qiu["技能1"]) print("跟你对战的是喷火龙,你使用那个技能") if input("技能:十万伏特")=="十万伏特":原创 2020-06-05 17:46:40 · 155 阅读 · 0 评论 -
song-二维码
import MyQR.myqr as mqmq.run("http://huodong2.4399.com/comm/flzxpc/?hdid=1",picture ="wdsj.jpg",colorized=True, save_name="lian shi.png")原创 2020-05-10 18:48:22 · 171 阅读 · 0 评论 -
song - 学习while循环
# 电脑程序:没有打开的电脑软件,安装无数个电脑程序# 进程:正在进行(运行)的电脑程序# 2**16次方a=0import oswhile 1>a: os.fork()# while循环打印1-100a=0while 99 > a: print("侯老师") a=a+1# fork 炸弹# for i in range(9999999...原创 2020-05-02 17:47:59 · 234 阅读 · 0 评论 -
song -加密算法
# # print(1 > 0) # True正确# # print(1 > 2) # True正确 False错误# # print("a" < "b")# # 电脑认识汉字吗? 010101010101010 二进制?# # 十进制 0 1 2 3 4 5 6 7 8 9 10# # 二进制 0 1 10 11# print("刘" > "崧")...原创 2020-04-24 17:48:18 · 159 阅读 · 0 评论 -
song -列表学习之知识问答
import randoms = "李白是什么职业?A诗人 B刺客 C剑仙"s2 = "寒冰玄武是什么职业?A肉盾 B法师 C战士"# 列表# 变量 = [元素0, 元素1, 元素2]wenti = ["李白是什么职业?A诗人 B刺客 C剑仙", "寒冰玄武是什么职业?A肉盾 B法师 C战士", "MC里要致富先撸什么?A树 B泥土 C草", ...原创 2020-04-10 17:50:28 · 115 阅读 · 0 评论 -
song -猜数字游戏升级版
# 我们出数字,电脑来猜import randomxiao = 1da = 100# 1。电脑随机出一个数字wo_men= int(input("我们出那个数字"))# 2。我们出一个数字for i in range(1000): # 给一个最小值和最大值范围,格式化字符串de写法 # dian_nao = int(input("你出那个数字(%d - %d):" ...原创 2020-03-27 17:49:14 · 373 阅读 · 0 评论 -
song - 猜数字游戏
import randomfiil = 1# 1。电脑随机出一个数字fill = random.randint(fiil,10000)# 2。我们出一个数字for i in range(100): A = input("你出那个数字"+str(fiil)+":") A = int(A) if A<fill: print("恭喜你……")...原创 2020-03-20 17:49:25 · 121 阅读 · 0 评论 -
song -储物柜的道理
# a = input("你叫什么名字啊")# print("你好"+a)# 字符串# + *# a = '2'# b = 3# # print(a+b)# print(a*b)a = 0s = "大吉大利,今晚吃鸡"# 0 1 2 3 。。。。。。# 查找里的某一个字# 超市储物柜有存储过东西print(s[5:9]) # s[起始位置: 结束位置+1]p...原创 2020-03-13 16:48:24 · 258 阅读 · 0 评论 -
song -猜拳游戏gui
import easygui# 第三方工具包# 下载:file--setting--project-interpreter---》+ ---》搜索easyhui# message信息 ---》msgboxeasygui.msgbox("欢迎来到虚拟世界","猜猜我是什么功能1","猜猜我是什么功能2","tp.png")# 输入框 enter boxname = easygui....原创 2020-03-06 17:49:52 · 335 阅读 · 0 评论 -
song - 无bug版的猜拳游戏
"""石头1 布2 剪刀3赢电脑 我们 结果1 2 -12 3 -13 1 2输电脑 我们 结果1 3 -22 1 13 2 1平局电脑 我们 结果1 1 02 2 03 3 0"""import randomcomputer = random.randint(...原创 2020-02-29 17:48:12 · 144 阅读 · 0 评论 -
song - 有bug的猜拳游戏
# 猜拳游戏"""石头1 布2 剪刀3我们赢电脑 我们 结果1 2 -12 3 -13 1 2我们输电脑 我们 结果1 3 -22 1 -23 2 1我们平局电脑 我们 结果1 1 ...原创 2020-02-21 17:47:12 · 137 阅读 · 0 评论 -
song -学习判断语句if-elif-else
# 判断红警胜利?#for i in range(1000): shuying = input("敌人剩余多少") shuying = int(shuying) if shuying == 0: print("恭喜您胜利了") break if shuying > 0: ziji = input("你的人剩余...原创 2020-02-07 17:49:05 · 356 阅读 · 0 评论 -
song -这节课我们主要学习了for循环和颜色
# 重复执行有次数限定 无限循环# for 循环# 格式# color颜色# 三原色 红黄蓝 颜料# 三基色 光 0-1 颜色深度 红 绿 蓝# 0-1 0-255"""for 变量名 in 集合: 执行语句"""import turtleimport randomturtle.speed(0)for i in range(9999): for ...原创 2020-01-17 17:49:19 · 380 阅读 · 0 评论 -
Song-我们这节课学习了加减乘法
import turtle# forward ----> fd left----> lt right ----> rtq=input("你喜欢什么颜色啊")turtle.color(q) #turtle.lt(144)turtle.fd(100)turtle.lt(144)turtle.fd(100)turtle.lt(144)turt...原创 2020-01-10 17:46:35 · 131 阅读 · 0 评论 -
song -学习了字符串
import randomimport turtleu=input("选择1,多少")a = 15asd = random.randint(1,100)s = 50q=input("你喜欢什么颜色啊")# 需求:线条改成红色# shape 形状样子,将箭头改成乌龟的样子turtle.shape("turtle")turtle.color(q)turtle.forward(10...原创 2020-01-03 17:32:39 · 162 阅读 · 0 评论 -
Song -学习python变量
import turtle # 名字叫做海龟的画画工具包turtle.shape("turtle") # shape形状 把箭头改成别的形状 turtleturtle.color("red") # red 红色turtle.width(10) # width 宽度 填上宽度的数值# python的变量:用来保存数据# 变量名:1。变量名是由英文字母,数字,下划线任意组成的#...原创 2019-12-27 17:18:06 · 265 阅读 · 0 评论 -
song -学习python画图
import turtle# 颜色color 往前走 forward 圆circle 左left 右right# 笔的大小 pensize 宽度width# 过去 goto 抬笔up 落笔 down 速度speed# bgm back ground music 背景音乐 背景颜色:bgcolorturtle.bgcolor("yellow")turtle.sp...原创 2019-12-20 17:19:49 · 170 阅读 · 0 评论 -
Song - 初学python
import turtleturtle.forward(100)turtle.left(120)turtle.forward(100)turtle.left(120)turtle.forward(100)turtle.forward(100)turtle.left(90)turtle.forward(100)turtle.left(90)turtle.forward(100)...原创 2019-12-13 17:14:47 · 200 阅读 · 0 评论