python 대화 형 그래 픽 프로 그래 밍 인 스 턴 스(1)

본 논문 의 사례 는 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()

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기