0
What meaning of implicit word
3 Antworten
+ 3
Use Dictionary.
+ 2
Muhammad Muhammad ,
I'm guessing you read the word implicit on python.org. There are many instances.
If you want help about a particular context, paste the paragraph you saw it in.
Here's one use. The Zen of Python, "2. Explicit is better than implicit." I believe that means code whose functionality is obvious to the reader is better than code whose functionality is hidden from the reader.
But, in my opinion, that zen statement conflicts with the very common use of Python modules whose purpose is to implicitly hide reusable code in separate files so that the reader doesn't have to read it.
It also conflicts with the very common use of "dunder names" for class methods such as __add__() that allow the Python language to implicitly hide complex functionality behind simple syntax such as the + operator.
+ 1
can you provide proper explanation of your question , i means where you first saw that word cuz implicit have different meaning on different places