牛客318925752号
牛客318925752号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客318925752号的博客
全部文章
/ 题解
(共3篇)
题解 | #密码验证合格程序#
import string A=list(string.ascii_uppercase) a=list(string.ascii_lowercase) num=['0','1','2','3','4','5','6','7','8','9',] lw=list(string.ascii_letter...
Python3
2021-09-20
0
564
题解 | #字符串加密#
while True: try: list_c=['a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z'] # ...
Python3
2021-09-18
10
1927
题解 | #字符个数统计#
d=input() str_=list() n=len(d) for i in range(n): if d[i] not in str_: str_+=d[i] num=len(str_) print(num)
Python3
2021-09-17
3
1111