I realized that in many languages I have learned includes the keywords public
and private
, and I also found out that Lua's equivalent to private
is local
which got me thinking if there is also an equivalent in C and Python.
So is there an actual equivalent of Java's public
and private
in C and Python?