Amatilas
Amatilas
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Amatilas的博客
全部文章
/ 题解
(共2篇)
题解 | #计算日期到天数转换#
year_date = [31,28,31,30,31,30,31,31,30,31,30,31] def mount_count(mouth): count = 0 for i in range(int(mouth) - 1): count += yea...
Python3
2021-11-06
0
397
题解 | #简单密码#有没有比这更low的解法
pwd_text = ['abc','def','ghi','jkl','mno','pqrs','tuv','wxyz'] pwd_text2 = 'abcdefghijklmnopqrstuvwxyz' def findIndex(var): index = 2 text = ...
Python3
2021-11-06
0
381