Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. import math, types
  2.  
  3. dic = vars(math)
  4. for i in dic:
  5.     if not isinstance(dic.get(i), types.BuiltinFunctionType) and not '_' in i:
  6.         print(i, dic.get(i))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement