0
Can we view all of the possible commands or parameters for "import" functions?
I'd like to see a complete list of everything I can do for each function. For example, if I 'Import socket', is there a way for me to print a list of all possible options for "socket"? Thanks in advance!
3 ответов
+ 2
not sure it is what you need, but try:
help(socket)
+ 1
Mihai Apostol That's it! Easy enough. Thanks!
0
Ken You're welcome.