a为非空字符串,Python解释为true,a or 'world'返回a.
b为none,Python解释为false,b Or ’world'返回'world'。
b为none,Python解释为false,b Or ’world'返回'world'。
2014-11-13
一楼 那个... 第二个参数表示你第一个参数的进制 所有那个表示你传入的123是8进制的 看函数名就知道是转换成int型 可以自己核下输出结果啊亲
2014-11-12
int('123',8)这个函数表示的是123是八进制的数转换为十进制的数,还是123是十进制的数转换为八进制?
2014-11-11
s = 'Python was started in 1989 by "Guido".'
print s
t = "Python is free and easy to learn."
print t
print s
t = "Python is free and easy to learn."
print t
2014-11-07