无言非沉默
无言非沉默
全部文章
分类
归档
标签
去牛客网
登录
/
注册
无言非沉默的博客
全部文章
(共105篇)
题解 | #提取数字电话#
import sys import re c=input() a=re.compile(r'(\d*)') b=a.findall(c) print(''.join(b))
2023-11-15
0
169
题解 | #正则查找网址#
import sys import re c=input() a=re.compile(r'https://(\w)+') b=a.search(c) d=str(b.group()) print((0,len(d)))
2023-11-15
0
165
题解 | #修改属性2#
import sys class Employee(): def __init__(self,name:str,salary:int): self.name=name self.salary=salary def printclass(se...
2023-11-14
0
170
题解 | #班级管理#
import sys class attribute(): a=input() b=int(input()) c=int(input()) d=input().split(" ") print("{}'s student num...
2023-11-14
0
175
题解 | #修正错误的字母#
import sys a=input() print(a.replace("a*","ab"))
2023-11-13
0
158
题解 | #单词造句#
from os import sep import sys while True: a=input() if a == "0": break print(a,end=" ")
2023-11-13
0
191
题解 | #列表中第一次出现的位置#
import sys a=input().split() print(a.index('NiuNiu'))
2023-11-13
0
169
题解 | #错误出现的次数#
import sys a=input().split(" ") b=[] for i in a: b.append(int(i)) print(b.count(0))
2023-11-13
0
184
题解 | #数学幂运算#
import sys a=input().split() print('{}\n{}'.format(pow(int(a[0]),int(a[1])),pow(int(a[1]),int(a[0]))))
2023-11-13
0
169
题解 | #数字的二进制表示#
import sys print(bin(int(input())))
2023-11-13
0
216
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页