* ************************************ * quickPython.txt * ************************************ * ************************************ * modules * ************************************ import math as mm or from math import * * ************************************ * ************************************ * help * ************************************ help(mm) help(mm.sin) for func in dir(mm): print(func) * ************************************ * ************************************ * include a file * ************************************ execfile("junk.txt") * ************************************