CARLJOSEPHLEE
CARLJOSEPHLEE
全部文章
分类
题解(26)
归档
标签
去牛客网
登录
/
注册
CARLJOSEPHLEE的博客
全部文章
(共209篇)
题解 | 朋友们的喜好
print([['Niumei', 'YOLO', 'Niu Ke Le', 'Mona'], ['pizza', 'fish', 'potato', 'beef'], [3, 6, 0, 3]])
2025-07-27
1
14
题解 | 删除简历
l1 = list(input().split()) del l1[0] print(l1)
2025-07-27
1
16
题解 | 删除好友
l1 = list(input().split()) l1.remove(input()) print(l1)
2025-07-27
1
12
题解 | 格式化输出(二)
a = input() print(a.lower()) print(a.upper()) print(a.title())
2025-07-27
1
11
题解 | 单词的长度
print(len(input()))
2025-07-27
1
15
题解 | 牛牛最好的朋友们
from sys import stdin print("".join(stdin.read().split()))
2025-07-27
1
10
题解 | 十六进制数字的大小
print(int(input(),16))
2025-07-27
1
10
题解 | 为整数增加小数点
print(f"{float(int(input())):.1f}") print("<class 'float'>")
2025-07-27
1
13
题解 | 牛牛的小数输出
print(f"{float(input()):.2f}")
2025-07-27
1
13
题解 | Hello World!
梦开始的地方 print("Hello World!")
2025-07-27
2
46
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页