我的应用程序允许用户定义对象的计划,并将它们存储为rrule。我需要列出这些对象并显示类似“每日,下午4:30”的内容。有一些东西“漂亮地格式化”一个rrule实例吗?
答案 0 :(得分:1)
您只需提供__str__
方法,只要有需要将对象呈现为字符串,就会调用它。
例如,请考虑以下类:
class rrule:
def __init__ (self):
self.data = ""
def schedule (self, str):
self.data = str
def __str__ (self):
if self.data.startswith("d"):
return "Daily, %s" % (self.data[1:])
if self.data.startswith("m"):
return "Monthly, %s of the month" % (self.data[1:])
return "Unknown"
使用__str__
方法进行漂亮打印。当您针对该类运行以下代码时:
xyzzy = rrule()
print (xyzzy)
xyzzy.schedule ("m3rd")
print (xyzzy)
xyzzy.schedule ("d4:30pm")
print (xyzzy)
您会看到以下输出:
Unknown
Monthly, 3rd of the month
Daily, 4:30pm