1
import re

r = re.compile("#{([^}]*)}")

def I(string):
    def eval_str_match(m):
        return str(eval(m.group(1)))
    return r.sub(eval_str_match,string)

* 除了蟒蛇的味道/风格/标准

有没有比单字母方法更简洁的方法来调用它?
正则表达式有什么可以错过的吗?
我应该使用 repr 而不是 str 吗?
我知道 eval 可能很危险,但我不明白为什么

I("#{some_func()}\n")

然后更糟

"%s\n" % str(some_func())
4

2 回答 2

2

不确定您要完成什么,但这行得通吗?

I = '{}\n'.format
I(some_func())

或者

def I(func):
    return "%x\n" % func()
I(some_func())

使用评论中的示例,

I([x*2 for x in [1,2,3]])

工作正常(虽然我不知道你希望输出是什么样的),就像

I(''.join((self.name, ' has ', self.number_of_children)))

但你真的应该只是在做

'{} has {}'.format(self.name, self.number_of_children)

这仍然是一条线。

于 2011-08-17T05:20:06.293 回答
1

这就是我想出的。

在 my_print.py 中:

import sys

def mprint(string='', dictionary=None):
    if dictionary is None:            
        caller = sys._getframe(1)
        dictionary = caller.f_locals
    print string.format(**dictionary)

例子:

>>> from my_print import mprint
>>> name = 'Ismael'
>>> mprint('Hi! My name is {name}.')
Hi! My name is Ismael.
>>> new_dict = dict(country='Mars', name='Marvin',
...                 job='space monkey', likes='aliens')
>>> mprint("Hi! My name is {name} and I'm from {country}."
...     " Isn't {name} the best name?!\nDo you know any other {name}?", new_dict)
Hi! My name is Marvin and I'm from Mars. Isn't Marvin the best name?!
Do you know any other Marvin?

看:

Python字符串插值实现

于 2013-05-12T12:48:14.953 回答