Pass *args to string.format in Python?

2019-08-11 22:55发布

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',),)"),)

2条回答
Lonely孤独者°
2楼-- · 2019-08-11 23:28

I think what you want to do is

msg.format(*args)
查看更多
We Are One
3楼-- · 2019-08-11 23:31

Yes it is.

>>> a=(1,2,3,4)
>>> "{0}{1}{2}{3}".format(*a)
'1234'
查看更多
登录 后发表回答