time.time()
time() -> floating point number
返回当前时间的时间戳
time() -> floating point number
返回当前时间的时间戳
2015-02-28
def cmp_ignore_case(s1, s2):
s1 = s1.lower()
s2 = s2.lower()
if s1 > s2:
return 1
if s1 < s2:
return -1
return 0
s1 = s1.lower()
s2 = s2.lower()
if s1 > s2:
return 1
if s1 < s2:
return -1
return 0
2015-02-27
def is_sqr(x):
return math.floor(math.sqrt(x)) == math.ceil(math.sqrt(x))
return math.floor(math.sqrt(x)) == math.ceil(math.sqrt(x))
2015-02-27
如果你用javascript,以下两种定义是完全相同的:
function foo() {}
var foo = function() {}
对解释器来说,函数名这个字符串它根本不关心,它只关心变量
function foo() {}
var foo = function() {}
对解释器来说,函数名这个字符串它根本不关心,它只关心变量
2015-02-27