牛客395278132号
牛客395278132号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客395278132号的博客
全部文章
/ 题解
(共3篇)
题解 | #拯救被污染的字符串#
my_str='I am$ N$iuniu$, an$d I $am stu$dying in $Now$coder!' my_list=my_str.split("$") print(my_list) print("".join(my_list))
Python3
2022-06-27
0
195
题解 | #发送offer#
offer_list=['Allen', 'Tom'] for i in offer_list: if i=='Allen' or i=='Tom': print(i+", you have passed our i...
Python3
2022-06-24
0
235
题解 | #计算器#
x=int(input()) y=int(input()) if y !=0: print(x+y) print(x-y) print(...
Python3
2022-06-24
4
322