[编辑 00]:我已经对帖子进行了多次编辑,现在甚至编辑了标题,请阅读以下内容。
我刚刚了解了格式字符串方法,以及它在字典中的使用,例如由 和 提供vars()
的locals()
字典globals()
:
name = 'Ismael'
print 'My name is {name}.'.format(**vars())
但我想做:
name = 'Ismael'
print 'My name is {name}.' # Similar to ruby
所以我想出了这个:
def mprint(string='', dictionary=globals()):
print string.format(**dictionary)
您可以在此处与代码交互:http: //labs.codecademy.com/BA0B/3# :workspace
最后,我想做的是将函数放在另一个名为 的文件中my_print.py
,所以我可以这样做:
from my_print import mprint
name= 'Ismael'
mprint('Hello! My name is {name}.')
但是现在,范围存在问题,我如何从导入的 mprint 函数中获取主模块命名空间作为字典。(不是来自 的那个my_print.py
)
我希望我让自己明白,如果没有,请尝试从另一个模块导入该功能。(回溯在链接中)
它是从 dict 访问globals()
dict my_print.py
,但是变量名当然没有在那个范围内定义,关于如何实现这一点的任何想法?
如果函数在同一个模块中定义,则该函数有效,但请注意我必须如何使用globals()
,因为如果不是,我只会得到一个包含mprint()
范围内值的字典。
我曾尝试使用非本地和点符号来访问主模块变量,但我仍然无法弄清楚。
[编辑 01]:我想我已经找到了解决方案:
在 my_print.py 中:
def mprint(string='',dictionary=None):
if dictionary is None:
import sys
caller = sys._getframe(1)
dictionary = caller.f_locals
print string.format(**dictionary)
在 test.py 中:
from my_print import mprint
name = 'Ismael'
country = 'Mexico'
languages = ['English', 'Spanish']
mprint("Hello! My name is {name}, I'm from {country}\n"
"and I can speak {languages[1]} and {languages[0]}.")
它打印:
Hello! My name is Ismael, I'm from Mexico
and I can speak Spanish and English.
你们觉得怎么样?那对我来说是一个困难的!
我喜欢它,对我来说更具可读性。
[编辑 02]:我制作了一个模块,其中包含一个interpolate
函数、一个Interpolate
类和一个interpolate
类似于该函数的类方法的尝试。
它有一个小型测试套件并记录在案!
我坚持方法实现,我不明白。
这是代码: http: //pastebin.com/N2WubRSB
你们觉得怎么样?
[编辑 03]:好的,我现在已经解决了这个interpolate()
功能。
在string_interpolation.py
:
import sys
def get_scope(scope):
scope = scope.lower()
caller = sys._getframe(2)
options = ['l', 'local', 'g', 'global']
if scope not in options[:2]:
if scope in options[2:]:
return caller.f_globals
else:
raise ValueError('invalid mode: {0}'.format(scope))
return caller.f_locals
def interpolate(format_string=str(),sequence=None,scope='local',returns=False):
if type(sequence) is str:
scope = sequence
sequence = get_scope(scope)
else:
if not sequence:
sequence = get_scope(scope)
format = 'format_string.format(**sequence)'
if returns is False:
print eval(format)
elif returns is True:
return eval(format)
再次感谢各位!有什么意见吗?
[编辑 04]:
这是我的最后一个版本,它有一个测试、文档字符串并描述了我发现的一些限制:http: //pastebin.com/ssqbbs57
您可以在这里快速测试代码:http: //labs.codecademy.com/BBMF# :workspace
并在此处克隆 grom git repo: https ://github.com/Ismael-VC/python_string_interpolation.git