单重for循环 >>> [x * x for x in xrange(10)] [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] 单重for循环+if条件 >>> [x * x for x in xrange(10) if x < 5] [0, 1, 4, 9, 16] 多重for循环 >>> [(i,j) for i in range(10) for j in range(10)] [(0, 0), (0, 1), (0…
[转自]http://blog.sciencenet.cn/blog-600900-499638.html 最近,我们老大要我写一个守护者程序,对服务器进程进行守护.如果服务器不幸挂掉了,守护者能即时的重启应用程序.上网Google了一下,发现Python有很几个模块都可以创建进程.最终我选择使用subprocess模块,因为在Python手册中有这样一段话: This module intends to replace several other, older modules and func…
在类创建的对象中,一般都是以字典的方式来保存信息 class Student: def __init__(self, name, age, score): self.name = name self.age = age self.score = score def input_student_info(): l = [] while True: n = input("请输入学生姓名:") if n == "": break a = input("请输入学生…