for num in range(10): print(num)
mehods = dir(str) for method in mehods: if method.startswith("__"): continue print(method)