python 은 모니터 의 예제 코드 를 실현 합 니 다.

아무 말 도 하지 않 고 먼저 그림 을 그 려 보 세 요.Python 초보 자 들 은 스크린 타이머 를 실현 합 니 다.

원리:Python turtle 라 이브 러 리 를 이용 하여 빠 른 그림 그리 기 를 실현 하고 1 초 마다 화면 을 지우 고 컴퓨터 의 실시 간 시간 을 얻 으 며 다시 그림 을 그 려 동적 시간 을 보 여 줍 니 다.
숫자 를 그리 면 숫자 를 하나의 수정체 관상 의 8(7segments)로 이해 할 수 있다.서로 다른 숫자 는 모두 그 변화 에서 나 온 것 이다.다만 서로 다른 숫자 에 대해 붓 을 들 고 붓 을 들 어 올 리 는 동작 을 실현 할 뿐 서로 다른 동작 을 할 수 있다.

import turtle, time
def drawGap():
  turtle.penup()
  turtle.fd(5)
def drawLine(draw):
  drawGap()
  turtle.pendown() if draw else turtle.penup()
  turtle.fd(40)
  drawGap()
  turtle.right(90)
def drawDigit(d):
  drawLine(True) if d in [2,3,4,5,6,8,9] else drawLine(False) #g
  drawLine(True) if d in [0,1, 3, 4, 5, 6,7, 8, 9] else drawLine(False) #c
  drawLine(True) if d in [0, 2, 3, 5, 6, 8, 9] else drawLine(False) #d
  drawLine(True) if d in [0,2,6,8] else drawLine(False) #e
  turtle.left(90) #       ,    ,      
  drawLine(True) if d in [0,4,5,6,8,9] else drawLine(False) 
  drawLine(True) if d in [0,2,3,5,6,7,8,9] else drawLine(False)
  drawLine(True) if d in [0,1,2,3,4,7,8,9] else drawLine(False)
  turtle.left(180)
  turtle.penup()
  turtle.fd(20)
def drawDate(date):
  turtle.pencolor('red')
  for i in date:
    if i == '-':
      turtle.write(' ',font=('Arial',18,'normal'))
      turtle.pencolor('green')
      turtle.fd(40)
    elif i == '=':
      turtle.write(' ', font=('Arial', 18, 'normal'))
      turtle.pencolor('blue')
      turtle.fd(40)
    elif i == '+':
      turtle.write(' ', font=('Arial', 18, 'normal'))
      turtle.pencolor('yellow')
    else:
      drawDigit(eval(i))
def init():
  turtle.setup(1920,1080,0,0) #       200 200      
  turtle.speed(10)
  turtle.penup() 
  turtle.goto(0,0)
  turtle.fd(-350)
  turtle.pensize(5)
def main():
  while True:
    turtle.clear()
    init()
    time_string = time.strftime("%H-%M=%S+", time.localtime())
    turtle.getscreen().tracer(30,0)
    drawDate(time_string) #      2017-05=02+        
    time.sleep(1)
    turtle.hideturtle()

main()
마지막 으로 pyinstaller 라 이브 러 리 를 이용 하여 Python 프로그램 exe 소프트웨어 화 를 실현 할 수 있 습 니 다.
:\>pip install pyinstaller
:\>pyinstaller D:\codes\dpython.py
:\>pyinstaller -F dpython.py  //-F 매개 변 수 를 통 해 Python 원본 파일 에 대해 독립 적 으로 실행 가능 한 파일 을 만 들 수 있 습 니 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기