Python Sleep 휴면 함수

1024 단어 python
다음으로 이동:http://www.cnblogs.com/jamespb/archive/2011/10/11/2207513.html
Python 프로 그래 밍 에서 time 모듈 을 사용 하면 프로그램 을 휴면 시 킬 수 있 습 니 다. 구체 적 인 방법 은 time. sleep (초) 입 니 다. 그 중에서 '초 수' 는 초 단위 로 소수 일 수 있 고 0.1 초 는 휴면 100 밀리초 를 대표 합 니 다. 
# -*- coding: utf-8 -*-

import time
import sys

#       
reload(sys)
sys.setdefaultencoding( "utf-8" )

#       1 
i = 1
while i <= 3:
    print i #   i
    i += 1
    time.sleep(1) #   1 

좋은 웹페이지 즐겨찾기