又是一个死胡同.
估计又是一个语法或者逻辑错误
我感觉这个纯粹是一个逻辑错误
第一版
class time_show:
def __init__(self):
self.__total_time = int(time.time())
self.__current_hours =(self.__total_time // 3600) % 24 % 365 + 8
self.__current_minute =self.__total_time % 3600 // 60
self.__current_seconds = self.__total_time % 3600 % 24 % 365
def show_time