胖小妹
胖小妹
全部文章
分类
归档
标签
去牛客网
登录
/
注册
胖小妹的博客
全部文章
(共1篇)
题解 | #密码游戏#
#创建一个数组,获取输入的四位数 list1 =int(input()) #获取4位数中每一位的值 first = list1//1000 second = (list1//100)%10 third = (list1//10)%10 fourth = list1 % 10 #创建一个临时数组ar...
Python3
数组
2022-08-02
0
221