0
Where is help feature? When try to run message "file not found" use help for possible solutions. Pse answer this time. Sd
Cant run my code
1 Respuesta
+ 1
If you are talking about python. Then dir and help are two features of python which help developer to see which function or class do what . For example if you want to cheque the contact of math class then you may write
import math
print(help(math))#this will return all textual information
Or
import math
print(dir(math))#this will return list of all available tools