python中全大写的函数和普通函数有区别吗?

in python, is the function that its name is full-uppercase different from the common function?

在python中,全大写的函数和普通函数有区别吗?就像 "django.db.models.CASCADE":

def CASCADE(collector, field, sub_objs, using):
collector.collect(sub_objs, source=field.remote_field.model,
                  source_attr=field.name, nullable=field.null)
if field.null and not connections[using].features.can_defer_constraint_checks:
    collector.add_field_update(field, None, sub_objs)

不,一样。命名函数时可以使用不同的命名约定。您可以使用全小写、全大写、带下划线的小写等。您可以了解有关命名约定的更多信息here