like in PHP you can do
class C {
private const FOO=123;
}
for constants that are only relevant inside the class/not part of the public API, does Python support something similar?
like in PHP you can do
class C {
private const FOO=123;
}
for constants that are only relevant inside the class/not part of the public API, does Python support something similar?