hyperal
hyperal
全部文章
分类
归档
标签
去牛客网
登录
/
注册
hyperal的博客
全部文章
(共25篇)
题解 | #简写单词#
s = input()a = s.split(' ')for i in a: print(i[0].upper(), end='')
2022-12-12
0
281
题解 | #查字典#
dict = {'a': ['apple', 'abandon', 'ant'], 'b': ['banana', 'bee', 'become'], 'c': ['cat', 'come'], 'd': 'down'} 2 k = input() ...
2022-08-01
0
213
题解 | #团队分组#
group_list = [ 'Tom', 'Allen', 'Jane', 'William', 'Tony' ] print(group_list[:2]) print(group_list[1:4]) print(group_list[3:])
2022-07-28
0
217
题解 | #读入整数数字#
a = int(input()) print(a) print(type(a))
2022-07-27
6
1338
题解 | #排序与反转#
my_list = ['P','y','t','h','o','n'] print('Here is the original list:') print(my_list) print() print('The result of a temporary reverse order:') my_li...
2022-07-27
0
212
首页
上一页
1
2
3
下一页
末页