儿童python编程入门-青少年Python编程入门 PDF 超清版

本文实例为大家分享了python交互式图形编程的具体代码,供大家参考,具体内容如下 #!/usr/bin/env python3# -*- coding: utf-8 -*-#温度转换from graphics import * win = GraphWin("摄氏温度转换器", 400, 300)win.setCoords(0.0, 0.0, 3.0, 4.0)# 绘制接口Text(Point(1,3), " 摄氏温度:").draw(win)Text(Point(1,1), " 华氏温度:").draw(win)input = Entry(Point(2,3), 5)input.setText("0.0")input.draw(win)output = Text(Point(2,1),"")output.draw(win)button = Text(Point(1.5,2.0),"转换")button.draw(win)Rectangle(Point(1,1.5), Point(2,2.5)).draw(win)# 等待鼠标点击win.getMouse()# 转换输入celsius = eval(input.getText())fahrenheit = 9.0/5.0 * celsius + 32.0# 显示输出,改变按钮output.setText(fahrenheit)button.setText("退出")# 等待响应鼠标点击,退出程序win.getMouse()win.close() #!/usr/bin/env python3# -*- coding: utf-8 -*-#方块移动from tkinter import * def main(): tk = Tk() canvas = Canvas(tk, width = 400, height = 400) canvas.pack() def moverectangle(event): if event.keysym == "Up": canvas.move(1,0,-5) elif event.keysym == "Down": canvas.move(1,0,5) elif event.keysym == "Left": canvas.move(1,-5,0) elif event.keysym == "Right": canvas.move(1,5,0) canvas.create_rectangle(180,180,220,220,fill="red") canvas.bind_all("KeyPress-Up",moverectangle) canvas.bind_all("KeyPress-Down",moverectangle) canvas.bind_all("KeyPress-Left",moverectangle) canvas.bind_all("KeyPress-Right",moverectangle) tk.mainloop() if __name__ == '__ma……

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值