hi there,
is there any editor or compiler that explain us what the lines of codes we have written means and is there any editor or compiler that we can use with html & php.mail me

Recommended Answers

All 3 Replies

I think the best thing you can do for the first question is just ask us becuase i really dont think there is any IDE in python that will do that.

The simple IDE called "IDLE" that is supplied with the usual Python installation has interactive code completion for Python's many builtin functions. The IDE "DrPython" is similar, but gives you a lot more detail what the function does in its popup window.

And don't forget about help()

>>> help( input )
Help on built-in function input in module __builtin__:

input(...)
    input([prompt]) -> value
    
    Equivalent to eval(raw_input(prompt)).

>>>

You can use that on most any function to get info on usage, and a short explanation

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.