For example, when defining constants used in multiple files in consts.py
import consts
↑ is before the variable name when using consts. Must be attached
from consts import *
↑ Then, before the variable name consts. Can be used without.
Recommended Posts