Pass *args to string.format in Python?

时间秒杀一切 提交于 2019-12-24 10:57:58

问题


Is it possible to pass *args to string.format? I have the following function:

@classmethod
def info(cls, component, msg, *args):
    """Log an info message"""
    cls.__log(cls.Level.INFO, component, msg, args)

@classmethod
def __log(cls, level, component, msg, *args):
    """Log a message at the requested level"""
    logging.getLogger("local").log(level, " - ".join([component, msg.format(args)]))

When I try unit test it with LogCapture I get the following:

def test_logWithArgs(self):
    Logger.level(Logger.Level.INFO)
    with LogCapture(level=Logger.Level.INFO) as lc:
        Logger.info("MyComponent", "{0}", "TestArg")
        lc.check(("local", "INFO", "MyComponent - TestArg"))


AssertionError: Sequence not as expected:

same:
()

first:
(('local', 'INFO', 'MyComponent - TestArg'),)

second:
(('local', 'INFO', "MyComponent - (('TestArg',),)"),)

回答1:


I think what you want to do is

msg.format(*args)



回答2:


Yes it is.

>>> a=(1,2,3,4)
>>> "{0}{1}{2}{3}".format(*a)
'1234'


来源:https://stackoverflow.com/questions/11197072/pass-args-to-string-format-in-python

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!