79477861

Date: 2025-03-01 16:00:20
Score: 1.5
Natty:
Report link
from math import *

It defines all the attributes without defining math. So we get this error.

import math
from math import *

This imports the module as math but not that one.

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: user1582833