首页 > 代码库 > python--循环&if

python--循环&if

#!/usr/bin/env python
import socket
#solist = [x for x in dir(socket) if x.startswith("SO_")]
#solist.sort()
#for x in solist:
#    print x

def fun():
    for x in dir(socket):
        if x.startswith("SO_"):
            print x
fun()

再python中循环和判断可以放在一起:

solist = [x for x in dir(socket) if x.startswith("SO_")]

这句含义和下面的函数中起到一样的作用:



本文出自 “自定义” 博客,谢绝转载!

python--循环&if