赞
踩
继续python系列,python能够自动推断类型这个太好用了,根本不用声明类型,自己根据运行情况推断出所用的类型,所以在定义函数的时候根本不用声明参数的类型。
下面这个题目aoj1303,求2的指数,如下:
def gethex(a):
li=[]
while a:
zhi=a%2
li.append(zhi)
a=a/2
return li
def theNumTwo(List):
length=len(List)
num=0
for i in range(length):
if List[i]==0:
num+=1
else:
break;
return num
inputstr=raw_input()
while inputstr!='':
#print inputstr
a,b=map(int,inputstr.split())
hexa=gethex(a)
hexb=gethex(b)
max1=theNumTwo(hexa)
max2=theNumTwo(hexb)
if max1>max2:
print '>'
elif max1<max2:
print '<'
else:
print '='
inputstr=raw_input()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。