码迷,mamicode.com
首页 > 编程语言 > 详细

python2.7练习小例子(九)

时间:2018-04-25 12:14:11      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:暂停   ict   log   %s   utf-8   for   分析   ted   练习题   

    9)1、题目:暂停一秒输出。

    程序分析:使用 time 模块的 sleep() 函数。

    程序源代码:

 

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import time
 
myD = {1: ‘a‘, 2: ‘b‘}
for key, value in dict.items(myD):
    print key, value
    time.sleep(1) # 暂停 1 秒

    以上实例输出结果为(会有停顿效果):

 

1 a
2 b

    每隔一秒输出列表一个元素:

 

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import time

l=[1,2,3,4]
for i in range(len(l)):
    print l[i]
    time.sleep(1)  # 暂停一秒输出

    2、题目:暂停一秒输出,并格式化当前时间。

    程序源代码:

 

#!/usr/bin/python
# -*- coding: UTF-8 -*-
import time
 
print time.strftime(‘%Y-%m-%d %H:%M:%S‘,time.localtime(time.time()))
 
# 暂停一秒
time.sleep(1)
 
print time.strftime(‘%Y-%m-%d %H:%M:%S‘,time.localtime(time.time()))

    以上实例输出结果为:

 

2018-04-20 17:48:40
2018-04-20 17:48:41

    

import time,datetime

time.sleep(1)
TIME = datetime.datetime.now()
print(TIME.strftime("%Y.%m.%d %H-%M-%S"))

    这两个练习题主要是用来熟悉python时间的操作。如果感觉不错的话,请多多点赞支持哦。。。

  原文链接:https://blog.csdn.net/luyaran/article/details/80022106

python2.7练习小例子(九)

标签:暂停   ict   log   %s   utf-8   for   分析   ted   练习题   

原文地址:https://www.cnblogs.com/luyaran/p/8942063.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!