python交互式图形编程实例(一)


Posted in Python onNovember 17, 2017

本文实例为大家分享了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__ == '__main__':
  main()
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from graphics import *

 
def convert(input):
  celsius = eval(input.getText())  # 输入转换
  fahrenheit = 9.0/5.0 * celsius + 32
  return fahrenheit 
def colorChange(win,input):
  cnum = eval(input.getText())
  weight = cnum / 100.0
  newcolor = color_rgb(int(255*weight),int(66+150*(1-weight)),int(255*(1-weight)))
  win.setBackground(newcolor)
def main():
  win = GraphWin("摄氏温度转换", 400, 300)
  win.setCoords(0.0, 0.0, 3.0, 4.0)
  # 绘制输入接口
  Text(Point(1,3),
     " 摄氏温度:").draw(win)
  Text(Point(2,2.7),
     " (请输入: 0.0-100.0 )").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)
  rect = Rectangle(Point(1,1.5), Point(2,2.5))
  rect.draw(win)
  # 等待鼠标点击
  win.getMouse()
  result = convert(input)  # 转换输入
  output.setText(result)  # 显示输出 
  # 改变颜色
  colorChange(win,input)
  # 改变按钮字体
  button.setText("退出")
  # 等待点击事件,退出程序
  win.getMouse()
  win.close()
 
if __name__ == '__main__':
  main()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Python访问MySQL封装的常用类实例
Nov 11 Python
Python实现通过文件路径获取文件hash值的方法
Apr 29 Python
Python使用defaultdict读取文件各列的方法
May 11 Python
Python使用struct处理二进制的实例详解
Sep 11 Python
python读取中文txt文本的方法
Apr 12 Python
Python redis操作实例分析【连接、管道、发布和订阅等】
May 16 Python
python与mysql数据库交互的实现
Jan 06 Python
Keras设置以及获取权重的实现
Jun 19 Python
详解用Python调用百度地图正/逆地理编码API
Jul 02 Python
容易被忽略的Python内置类型
Sep 03 Python
python爬虫scrapy基本使用超详细教程
Feb 20 Python
Python利用FlashText算法实现替换字符串
Mar 31 Python
Python金融数据可视化汇总
Nov 17 #Python
详解Python中的Numpy、SciPy、MatPlotLib安装与配置
Nov 17 #Python
Python中super函数的用法
Nov 17 #Python
python使用正则表达式替换匹配成功的组
Nov 17 #Python
python定时利用QQ邮件发送天气预报的实例
Nov 17 #Python
详解python eval函数的妙用
Nov 16 #Python
Python算法之图的遍历
Nov 16 #Python
You might like
php 分页函数multi() discuz
2009/06/21 PHP
提升PHP性能的21种方法介绍
2013/06/25 PHP
PHP安全的URL字符串base64编码和解码
2014/06/19 PHP
PHP curl使用实例
2015/07/02 PHP
Yii2主题(Theme)用法详解
2016/07/23 PHP
Prototype 学习 Prototype对象
2009/07/12 Javascript
基于JQUERY的多级联动代码
2012/01/24 Javascript
Extjs中使用extend(js继承) 的代码
2012/03/15 Javascript
js获取客户端外网ip的简单实例
2013/11/21 Javascript
php中给js数组赋值方法
2014/03/10 Javascript
jQuery多媒体插件jQuery Media Plugin使用详解
2014/12/19 Javascript
jQuery Select下拉框操作小结(推荐)
2016/07/22 Javascript
基于jQuery实现弹幕APP
2017/02/10 Javascript
Vue.js 60分钟快速入门教程
2017/03/28 Javascript
jQuery代码优化方法总结
2018/01/29 jQuery
详解使用create-react-app添加css modules、sasss和antd
2018/07/31 Javascript
jQuery+CSS实现的标签页效果示例【测试可用】
2018/08/14 jQuery
JS使用对象的defineProperty进行变量监控操作示例
2019/02/02 Javascript
Python sys.path详细介绍
2013/10/17 Python
9种python web 程序的部署方式小结
2014/06/30 Python
python在指定目录下查找gif文件的方法
2015/05/04 Python
详解Python中的type()方法的使用
2015/05/21 Python
python内置函数:lambda、map、filter简单介绍
2017/11/16 Python
几种实用的pythonic语法实例代码
2018/02/24 Python
取numpy数组的某几行某几列方法
2018/04/03 Python
使用Fabric自动化部署Django项目的实现
2019/09/27 Python
tensorflow 模型权重导出实例
2020/01/24 Python
给Python学习者的文件读写指南(含基础与进阶)
2020/01/29 Python
解决pycharm中导入自己写的.py函数出错问题
2020/02/12 Python
python sklearn包——混淆矩阵、分类报告等自动生成方式
2020/02/28 Python
如何在windows下安装配置python工具Ulipad
2020/10/27 Python
Jeep牧马人、切诺基和自由人零配件:4 Wheel Drive Hardware
2017/07/02 全球购物
宏碁西班牙官网:Acer西班牙
2021/01/08 全球购物
全球精选男装和家居用品:Article
2020/04/13 全球购物
2014道德模范事迹材料
2014/02/16 职场文书
简单租房协议书
2014/10/21 职场文书