We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
% cat a.py import math def f(): print(math.pi, math.e) f()
LPython Output:
% lpython a.py semantic error: Only Variable type is supported for now in Attribute --> a.py:4:11 | 4 | print(math.pi, math.e) | ^^^^^^^
CPython:
% python a.py 3.141592653589793 2.718281828459045