The built-in function dir() is used to find out which names a module defines. It returns a sorted list of strings
dir() does not list the names of built-in functions and variables. If you want a list of those, they are defined in the standard module builtins:
Code:
import sys, builtins
dir(sys)
dir(builtins)
dir()
In questa pagina del sito puoi guardare il video online Python 037: The dir() Function della durata di ore minuti seconda in buona qualità , che l'utente ha caricato BharatOnlineDS 06 luglio 2020, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 32 volte e gli è piaciuto 1 spettatori. Buona visione!