tags:

views:

39

answers:

1

how can i import modules/packages at python3.0 editor IDLE. and can we see all the modules contain/included by it.

+1  A: 
>>> import idle
>>> dir(idle)
cpharmston