阿浩74
阿浩74
全部文章
分类
题解(12)
归档
标签
去牛客网
登录
/
注册
阿浩74的博客
全部文章
(共3篇)
题解 | #学英语#
num1 = ['zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine', 'ten', 'eleven', 'twelve', 'thirteen', 'fourte...
Python3
字符串
2022-03-28
1
362
题解 | #字符串合并处理#
try: s1, s2 = input().split() s = s1 + s2 s_even = sorted(s[::2]) s_odd = sorted(s[1::2]) ss = '' for ...
Python3
字符串
2022-03-27
4
410
题解 | #表示数字#
try: s = input() res = '' pre_char = '' for i in s: #判断当前字符为数字 if i.isdigit(): ...
Python3
字符串
2022-03-21
7
451