循环流

While-for
while
更多信息,请访问 Python - while
for
固定次数循环;无法实现无限循环
更多信息,请访问 Python - for
continue
更多信息,请访问 Python - continue
break
更多信息,请访问 Python - break
使用 Usage
输出:0-9
for num in range(10):
    print(num)      
遍历字符串的函数
mehods = dir(str)
for method in mehods:
    if method.startswith("__"):
        continue
    print(method)