JezeChou
JezeChou
全部文章
题解
归档
标签
去牛客网
登录
/
注册
JezeChou的博客
我随便写写,你随便看看
全部文章
/ 题解
(共2篇)
题解 | #简单计算器#
python多个异常解析 while True: try: expr = input() for i in expr: if i.isnumeric() or i == '.': pass ...
Python3
异常处理
2021-07-20
0
592
题解 | #字符个数统计#
根据题目要求:1、ASCII码范围在0~1270 <= ord(string) <= 1272、相同字符只计算一次,即去重set(string) 终上,最终代码: def count_character(str): string = ''.join(set(str)) # 去重...
华为机试
Python3
字符个数统计
2021-06-07
59
5474