本文整理汇总了Python中mathics.core.expression.Expression.to_python方法的典型用法代码示例。如果您正苦于以下问题:Python Expression.to_python方法的具体用法?Python Expression.to_python怎么用?Python Expression.to_python使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类mathics.core.expression.Expression
的用法示例。
在下文中一共展示了Expression.to_python方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: importer
# 需要导入模块: from mathics.core.expression import Expression [as 别名]
# 或者: from mathics.core.expression.Expression import to_python [as 别名]
def importer(self, filename, evaluation):
path = filename.to_python()
if not (isinstance(path, basestring) and path[0] == path[-1] == '"'):
evaluation.message('Import', 'chtype', filename)
return Symbol('$Failed')
path = path.strip('"')
if path.startswith("ExampleData"):
path = ROOT_DIR + 'data/' + path
if not os.path.exists(path):
evaluation.message('Import', 'nffil')
return None
filetype = Expression('FileFormat', path).evaluate(evaluation=evaluation)
assert isinstance(filetype, String)
filetype = filetype.to_python().strip('"')
assert filetype in IMPORTFORMATS
result = {}
if filetype == 'Text':
with open(path, 'r') as f:
plaintext = f.read()
textlines = filter(lambda x: x != '', plaintext.split('\n'))
textwords = filter(lambda x: x != '', plaintext.split())
result['Plaintext'] = plaintext
result['Lines'] = textlines
result['Words'] = textwords
result['String'] = plaintext
result['Data'] = textlines
return result