Z.Flyee
Z.Flyee
全部文章
华为机考
Anaconda(2)
Django 60天创建个人网站(5)
Jupyterlab(3)
matlab(1)
Python学习(18)
Spark(2)
基本技巧和素养(1)
算法库(2)
题解(9)
归档
标签
去牛客网
登录
/
注册
Z.Flyee的博客
全部文章
/ 华为机考
(共2篇)
题解 | #求int型正整数在内存中存储时1的个数#
方法1:循环运算 num = int(input()) count = 0 while num > 1: if num % 2 == 1: count += 1 num = num // 2 if num % 2 == 1: count += 1 pri...
Python3
2021-10-26
1
343
题解 | #取近似值#
方法1:切割法 num = float(input()) zhenShu = float(str(num).split('.')[0]) xiaoShu = num - zhenShu if xiaoShu >= 0.5: print(int(zhenShu)+1) else: ...
Python3
数组
2021-10-26
0
332