欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

python封装对象实现时间效果

时间:2021-09-17 09:39:25|栏目:Python代码|点击:

本文实例为大家分享了python封装对象实现时间效果的具体代码,供大家参考,具体内容如下

# 钟表
import time
class Clock():
  def __init__(self, hour, minute, second):  # 时 分 秒
    self.hour = hour
    self.minute = minute
    self.second = second
  @classmethod
  def now(cls):
    nowtime = time.localtime()
    return cls(nowtime.tm_hour, nowtime.tm_min, nowtime.tm_sec)
  def run(self):
    self.second += 1
    if self.second == 60:
      self.second = 0
      self.minute += 1
      if self.minute == 60:
        self.minute = 0
        self.hour += 1
        if self.hour == 24:
          self.hour = 0
  def show(self):
    return "{} : {} : {}".format(self.hour, self.minute, self.second)

if __name__ == '__main__':
    cl = Clock.now()
    while True:
      print(cl.show())
      time.sleep(1)
      cl.run()

上一篇:解决Jupyter 文件路径的问题

栏    目:Python代码

下一篇:超详细PyTorch实现手写数字识别器的示例代码

本文标题:python封装对象实现时间效果

本文地址:http://www.codeinn.net/misctech/175668.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有