其他分享
首页 > 其他分享> > 十七讲 再接再厉 再创佳绩!!!

十七讲 再接再厉 再创佳绩!!!

作者:互联网

十七讲:

0 dry?干旱?

1:因为函数可以多次使用啊  防止代码段重复

2:无数个

3:啥都可以吧 关键字  注意合法性  然后不能和bif重复 还要可读性

4:两个    被坑了 沃日 0个 元组传递不合法

5:你好世界

6: 

def power(x,y):
return x**y
print(power(2,3))

7::

def gcd(x,y):
if(x<y):
temp=x
x=y
y=temp
des=x%y
while des!=0:
x=y
y=des
des=x%y

return y

print(gcd(8,12))

8::

def my_bin(x):


d=x%2
x=x/2
res=[d]
while x!=0:
d=int(x%2)
x=int(x/2)
res=res+[d]
return res[::-1]

for each in my_bin(12):
print (each,end='')


标签:十七,return,int,res,des,再接再厉,x%,佳绩,def
来源: https://www.cnblogs.com/xiaoli1996/p/14810593.html