牛客刷题——Python入门总结

news2024/12/29 8:37:59

在这里插入图片描述

🤵‍♂️ 个人主页: @北极的三哈 个人主页

👨‍💻 作者简介:Python领域优质创作者。

📒 系列专栏:《Python入门学习》《牛客题库-Python篇》

🌐推荐《牛客网》——找工作神器|笔试题库|面试经验|实习经验内推求职就业一站解决

牛客在线编程 Python入门篇

    • 01 输入输出
      • NP1.Hello World!
      • NP2.多行输出
      • NP3.读入字符串
      • NP4.读入整数数字
      • NP5.格式化输出
      • NP6.牛牛的小数输出
    • 02 类型转换
      • NP8 为整数增加小数点
      • NP9 十六进制数字的大小
    • 03 字符串
      • NP10 牛牛最好的朋友们
      • NP11 单词的长度
      • NP12 格式化输出(二)
      • NP13 格式化输出(三)
      • NP14 不用循环语句的重复输出
      • NP15 截取用户名前10位
    • 04 列表
      • NP16 发送offer
      • NP17 生成列表
      • NP18 生成数字列表
      • NP19 列表的长度
      • NP20 增加派对名单(一)
      • NP21 增加派对名单(二)
      • NP22 删除简历
      • NP23 删除好友
      • NP24 淘汰排名最后的学生
      • NP25 有序的列表
      • NP26 牛牛的反转列表
      • NP27 朋友们的喜好
      • NP28 密码游戏
      • NP29 用列表实现栈
      • NP30 用列表实现队列
      • NP31 团队分组
    • 05运算符
      • NP32 牛牛的加减器
      • NP33 乘法与幂运算
      • NP34 除法与取模运算
      • NP35 朋友的年龄是否相等
      • NP36 谁的数字大
      • NP37 不低于与不超过
      • NP38 牛牛的逻辑运算
      • NP39 字符串之间的比较
      • NP40 俱乐部的成员
      • NP41 二进制位运算
      • NP42 公式计算器
    • 06 条件语句
      • NP43 判断布尔值
      • NP44 判断列表是否为空
      • NP45 禁止重复注册
      • NP46 菜品的价格
      • NP47 牛牛的绩点
      • NP48 验证登录名与密码
    • 07 循环语句 NP49-NP61
      • NP49 字符列表的长度
      • NP50 程序员节
      • NP51 列表的最大与最小
      • NP52 累加数与平均值
      • NP53 前10个偶数
      • NP54 被5整除的数字
      • NP55 2的次方数
      • NP56 列表解析
      • NP57 格式化清单
      • NP58 找到HR
      • NP59 提前结束的循环
      • NP60 跳过列表的某个元素
      • NP61 牛牛的矩阵相加
    • 08 元组 NP62-66
      • NP62 运动会双人项目
      • NP63 修改报名名单
      • NP64 输出前三同学的成绩
      • NP65 名单中出现过的人
      • NP66 增加元组的长度
    • 09 字典 NP67-75
      • NP67 遍历字典
      • NP68 毕业生就业调查
      • NP69 姓名与学号
      • NP70 首都
      • NP71 喜欢的颜色
      • NP72 生成字典
      • NP73 查字典
      • NP74 字典新增
      • NP75 使用字典计数
    • 010 内置函数 NP76 - NP93
      • NP76 列表的最值运算
      • NP77 朋友的年龄和
      • NP78 正数输出器
      • NP79 字母转数字
      • NP80 数字的十六进制
      • NP81 数字的二进制表示
      • NP82 数学幂运算
      • NP83 错误出现的次数
      • NP84 列表中第一次出现的位置
      • NP85 字符的类型比较
      • NP86 字符子串的查找
      • NP87 子串的数量
      • NP88 句子拆分
      • NP89 单词造句
      • NP90 修正错误的字母
      • NP91 小数位修正
      • NP92 公式计算器
      • NP93 创建集合
    • 011 面向对象 NP94 - NP100
      • NP94 函数求差
      • NP95 兔子的数量
      • NP96 球的表面积
      • NP97 班级管理
      • NP98 修改属性1
      • NP99 修改属性2
      • NP100 重载运算
    • 012 正则表达式 NP101 - NP103
      • NP101 正则查找网址
      • NP102 提取数字电话
      • NP103 截断电话号码
      • **`推 荐:牛客题霸-经典高频面试题库`**


01 输入输出

Python输入输出学习链接
在这里插入图片描述

NP1.Hello World!

在线编程跳转链接

str = "Hello World!"
print(str)

NP2.多行输出

在线编程跳转链接

str1 = 'Hello World!'
str2 =  'Hello Nowcoder!' 
print(str1)
print(str2)

NP3.读入字符串

在线编程跳转链接

str = input("")
print(str)

NP4.读入整数数字

在线编程跳转链接

a = int(input()) 
print(a)
print(type(a))

NP5.格式化输出

在线编程跳转链接

name = input() 
print('I am %s and I am studying Python in Nowcoder!' % name)

NP6.牛牛的小数输出

在线编程跳转链接

x=float(input()) 
print('%0.2f'%x)

02 类型转换

Python基本数据类型
在这里插入图片描述### NP7 小数化整数
在线编程跳转链接

number = float(input()) 
print(int(number))

NP8 为整数增加小数点

在线编程跳转链接

a = float(int(input())) 
print(f'{a:.1f}', type(a), sep='\n')

NP9 十六进制数字的大小

在线编程跳转链接

num=input() 
num=int(num,16) 
print(num)

03 字符串

Python基本数据类型字符串
在这里插入图片描述

NP10 牛牛最好的朋友们

在线编程跳转链接

a = input() 
b = input() 
print("".join([a,b]))

NP11 单词的长度

在线编程跳转链接

print(len(input())

NP12 格式化输出(二)

在线编程跳转链接

name = input()
print(f'{name.lower()}')
print('%s'%name.upper())
print('{}'.format(name.title()))

NP13 格式化输出(三)

在线编程跳转链接

name = input()
print(name.strip())

NP14 不用循环语句的重复输出

在线编程跳转链接

print(input()*100)

NP15 截取用户名前10位

在线编程跳转链接

s = input()
print(s[0:10])

04 列表

Python组合数据类型列表
在这里插入图片描述
在这里插入图片描述


NP16 发送offer

在线编程跳转链接

offer_list = ['Allen', 'Tom']


for i in range(len(offer_list)):
    print('{}, you have passed our interview and will soon become a member of our company.'.format(offer_list[i]))
     
     
for str_i in offer_list:
    if str_i == 'Tom':
        print('Andy, welcome to join us!' )
    else:
        print('{}, welcome to join us!'.format(str_i) )

NP17 生成列表

在线编程跳转链接

print(input().split(" "))

NP18 生成数字列表

在线编程跳转链接

print([int(i) for i in input().split(" ")])

NP19 列表的长度

在线编程跳转链接

print(len(input().split(" ")))

NP20 增加派对名单(一)

在线编程跳转链接

lst = input().split(" ")
lst.append('Allen')
print(lst)

NP21 增加派对名单(二)

在线编程跳转链接

lst = input().split(" ")
lst.insert(0, 'Allen')
print(lst)

NP22 删除简历

在线编程跳转链接

lst = input().split(" ")
lst.pop(0)
print(lst)

NP23 删除好友

在线编程跳转链接

lst = input().split(" ")
l = input()
lst.remove(l)
print(lst)

NP24 淘汰排名最后的学生

在线编程跳转链接

name = input().split(" ")
for i in range(3):
    name.pop(-1)  
print(name)

NP25 有序的列表

在线编程跳转链接

my_list = ['P','y','t','h','o','n']
print(sorted(my_list))
print(my_list)
my_list.sort(reverse=True)
print(my_list)

NP26 牛牛的反转列表

在线编程跳转链接

num = [3, 5, 9, 0, 1, 9, 0, 3]
num.reverse()
print(num)

NP27 朋友们的喜好

在线编程跳转链接

name = ['Niumei', 'YOLO', 'Niu Ke Le', 'Mona']
friends = []
friends.append(name)
food = ['pizza', 'fish', 'potato', 'beef']
friends.append(food)
number = [3, 6, 0, 3]
friends.append(number)
print(friends)

NP28 密码游戏

在线编程跳转链接

num = input()
ls = []
for i in num:
    ls.append((int(i)+3)%9)
print(f"{ls[2]}{ls[3]}{ls[0]}{ls[1]}")

NP29 用列表实现栈

在线编程跳转链接

stack = [1, 2, 3, 4, 5]
stack.pop(-1)
print(stack)
stack.pop(-1)
print(stack)
num = eval(input())
stack.append(num)
             
print(stack)

NP30 用列表实现队列

在线编程跳转链接

queue = [1, 2, 3, 4, 5]
queue.pop(0)
print(queue)
queue.pop(0)
print(queue)
num = eval(input())
queue.append(num)
print(queue)

NP31 团队分组

在线编程跳转链接

group_list = ['Tom', 'Allen', 'Jane', 'William', 'Tony']
print(group_list[0:2])
print(group_list[1:4])
print(group_list[3:5])

05运算符

Python中的运算符
在这里插入图片描述


NP32 牛牛的加减器

在线编程跳转链接

x=int(input()) 
y=int(input()) 
print(x+y) 
print(x-y)

NP33 乘法与幂运算

在线编程跳转链接

x = int(input())
y = int(input())
print(x*y)
print(x**y)

NP34 除法与取模运算

在线编程跳转链接

x = int(input())
y = int(input())
 
print(x//y, end=" ")
print(x%y)
print('{:.2f}'.format(x/y))

NP35 朋友的年龄是否相等

在线编程跳转链接

x, y = map(int,input().split(" ")) 
print(x==y)

NP36 谁的数字大

在线编程跳转链接

x, y = map(int, input().split(" "))
print(x>y, x<y, sep="\n")

NP37 不低于与不超过

在线编程跳转链接

k, x, y = input().split(" ")
print(k <= x)
print(k >= y)

NP38 牛牛的逻辑运算

在线编程跳转链接

x, y = input().split(" ")
x, y = int(x), int(y)
print(x and y)
print(x or y)
print(not x)
print(not y)

NP39 字符串之间的比较

在线编程跳转链接

s1 = input()
s2  =input()
print(s1 == s2)
print(bool(s1.lower() == s2.lower()))

NP40 俱乐部的成员

在线编程跳转链接

s = input().split(" ")
name = input()
print(name in s)

NP41 二进制位运算

在线编程跳转链接

x, y = map(int, input().split(" "))
print(x & y)
print(x | y)

NP42 公式计算器

在线编程跳转链接

x, y, z, k = map(int, input().split(" "))
print((x+y)*(z-k))

06 条件语句

Python语言流程控制结构
在这里插入图片描述


NP43 判断布尔值

在线编程跳转链接

x = int(input())
if x == 1:
    print("Hello World!")
else:
    print("Erros!")

NP44 判断列表是否为空

在线编程跳转链接

my_list = []
if len(my_list) == 0:
    print('my_list is empty!')
else:
    print('my_list is not empty!')

NP45 禁止重复注册

在线编程跳转链接

#为了不区分大小写把判断的都转成大写
current_users=[i.upper() for i in ['Niuniu','Niumei','GURR','LOLO']]

#因为输出的字符串要保持原来的样子,这个列表内容不能改
new_users=['GurR','Niu Ke Le','LoLo','Tuo Rui Chi']
for i in new_users:
    # 通过upper()来调整大写后再判断
    if i.upper() in current_users:  
        print(f"The user name {i} has already been registered! Please change it and try again!")
    else:
        print(f"Congratulations, the user name {i} is available!")

NP46 菜品的价格

在线编程跳转链接

s = input()
if s == 'pizza':
    print(10)
elif s == 'rice':
    print(2)
elif s == 'yogurt':
    print(5)
else:
    print(8)

NP47 牛牛的绩点

在线编程跳转链接

d = {'A': 4.0, 'B': 3.0, 'C': 2.0, 'D': 1.0, 'F': 0}

s = 0
c = 0
while True:
    grade = input()
    if grade == "False":
        break
    credit = int(input())
    c += credit
    s += d.get(grade)*credit

    
print('{:.2f}'.format(s/c))

NP48 验证登录名与密码

在线编程跳转链接

id = input()
password = input()
if id == 'admis' and password == 'Nowcoder666':
    print('Welcome!')
else:
    print("user id or password is not correct!")

07 循环语句 NP49-NP61

Python语言流程控制结构

在这里插入图片描述

NP49 字符列表的长度

在线编程跳转链接

my_list=['P','y','t','h','o','n']
print('Here is the original list:')
print(my_list)
print()
print('The number that my_list has is:')
print(len(my_list))

NP50 程序员节

在线编程跳转链接

users_list = ['Niuniu', 'Niumei', 'Niu Ke Le']
for i in users_list:
    print(f'Hi, {i}! Welcome to Nowcoder!')
print("Happy Programmers' Day to everyone!")

NP51 列表的最大与最小

在线编程跳转链接

ls = [i for i in range(10, 51)]
print(ls)
print(ls[0], ls[-1])

NP52 累加数与平均值

在线编程跳转链接

ls = list(map(int, input().split(" ")))
s = 0
for i in ls:
    s += i
print("{} {:.1f}".format(s, s/len(ls)))

NP53 前10个偶数

在线编程跳转链接

my_list = [i for i in range(0, 20) if i%2==0] 
for i in my_list:
    print(i)

NP54 被5整除的数字

在线编程跳转链接

my_list = [i for i in range(1, 51) if i % 5 == 0]
for i in my_list:
    print(i)

NP55 2的次方数

在线编程跳转链接

my_list = []
for i in range(1, 11):
    my_list.append(2**i)

for i in my_list:
    print(i)

NP56 列表解析

在线编程跳转链接

ls = [i for i in range(10)]
print(ls)

NP57 格式化清单

在线编程跳转链接

ls = ['apple', 'ice cream', 'watermelon', 'chips', 'hotdogs', 'hotpot']
while True:
    ls.pop(-1)
    print(ls)
    if len(ls) == 0:
        break

NP58 找到HR

在线编程跳转链接

users_list = ['Niuniu', 'Niumei', 'HR', 'Niu Ke Le', 'GURR', 'LOLO']
for i in users_list:
    if i == 'HR':
        print(f'Hi, {i}! Would you like to hire someone?')
    else:
        print(f'Hi, {i}! Welcome to Nowcoder!')

NP59 提前结束的循环

在线编程跳转链接

ls = [3, 45, 9, 8, 12, 89, 103, 42, 54, 79]
x = eval(input())
for i in ls:
    if i == x:
        break
    print(i)

NP60 跳过列表的某个元素

在线编程跳转链接

for i in range(1, 16):
    if i == 13:
        continue
    print(i, end=" ")

NP61 牛牛的矩阵相加

在线编程跳转链接

n = int(input()) 
print([[j*n for j in i] for i in [[1, 2, 3], [4, 5, 6], [7, 8, 9]]])

08 元组 NP62-66

元组学习链接:http://t.csdn.cn/RqgMt
在这里插入图片描述

NP62 运动会双人项目

在线编程跳转链接

t = (input(), input())
print(t)

NP63 修改报名名单

在线编程跳转链接

entry_form = ('Niuniu', 'Niumei')
print(entry_form)
try:
    entry_form[1] = 'Niukele'
except:
    print('The entry form cannot be modified!')

NP64 输出前三同学的成绩

在线编程跳转链接

s = input().split(' ')
t = tuple(s)
print((t[0:3]))

NP65 名单中出现过的人

在线编程跳转链接

t = tuple(['Tom', 'Tony', 'Allen', 'Cydin', 'Lucy', 'Anna'])
print(t)
name = input()
if name in t:
    print('Congratulations!')
else:
    print('What a pity!')

NP66 增加元组的长度

在线编程跳转链接

t = tuple(range(1, 6))
print(t)
print(len(t))

t1 = t + tuple(range(6, 11))
print(t1)
print(len(t1))

09 字典 NP67-75

Python组合数据类型字典
在这里插入图片描述

NP67 遍历字典

在线编程跳转链接

# 创建一个字典 operators_dict
operators_dict = {'<': 'less than','==': 'equal'}
 
# 先打印一行
print('Here is the original dict:')
# 在使用 for 循环 遍历 使用 sorted 函数 排序 包含 operators_dict 所有键值对的列表
for key, value in sorted(operators_dict.items()):
    # 输出类似字符串
    print(f'Operator {key} means {value}.')
 
# 增加键值对
operators_dict['>'] = 'greater than'
# 输出一个换行
print()
# 在打印一行字符串
print('The dict was changed to:')
# 再来个和上述一样的for循环
for key, value in sorted(operators_dict.items()):
    print(f'Operator {key} means {value}.')

NP68 毕业生就业调查

在线编程跳转链接

survey_list = ['Niumei', 'Niu Ke Le', 'GURR', 'LOLO']
result_dict = {'Niumei': 'Nowcoder', 'GURR': 'HUAWEI'}
 
for i in survey_list:
    if i in result_dict.keys():
        print(f'Hi, {i}! Thank you for participating in our graduation survey!')
    else:
        print(f'Hi, {i}! Could you take part in our graduation survey?')

NP69 姓名与学号

在线编程跳转链接

my_dict_1 = {'name': 'Niuniu', 'Student ID': 1}
my_dict_2 = {'name': 'Niumei', 'Student ID': 2}
my_dict_3 = {'name': 'Niu Ke Le', 'Student ID': 3}
dict_list = []
dict_list.append(my_dict_1)
dict_list.append(my_dict_2)
dict_list.append(my_dict_3)
 
for i in dict_list:
    key, value = i['name'], i['Student ID']
    print(f"{key}'s student id is {value}.")

NP70 首都

在线编程跳转链接

cities_dict = {'Beijing': {'capital': 'China'},
              'Moscow': {'capital': 'Russia'},
              'Paris': {'capital': 'France'}}
 
for city in sorted(cities_dict.keys()):
    city_value = cities_dict[city]
    for item in city_value:
        print(f'{city} is the {item} of {city_value[item]}!')

NP71 喜欢的颜色

在线编程跳转链接

result_dict = {
    'Allen': ['red', 'blue', 'yellow'],
    'Tom': ['green', 'white', 'blue'],
    'Andy': ['black', 'pink']
}
for i in sorted(k for k in result_dict):##列表生成式生成key的列表
    print("%s's favorite colors are:" % i)
    for x in result_dict[i]:
        print(x)

NP72 生成字典

在线编程跳转链接

a =input()
b = input()
names = a.split()
language = b.split()
dict_a = dict(zip(names,language))
print(dict_a)

NP73 查字典

在线编程跳转链接

dict1 = {'a': ['apple', 'abandon', 'ant'], 'b': ['banana', 'bee', 'become'], 'c': ['cat', 'come'], 'd': 'down'}
a = input()
for i in dict1[a]:
    print(i,end=' ')

NP74 字典新增

在线编程跳转链接

letter = input()
word = input()
d = {
    "a": ["apple", "abandon", "ant"],
    "b": ["banana", "bee", "become"],
    "c": ["cat", "come"],
    "d": "down",
    letter: word,
}
d[letter] = word
print(d)

NP75 使用字典计数

在线编程跳转链接

list1=list(input())
dict1={}
for i in list1:
    if i in dict1:
        dict1[i]+=1
    else:
        dict1[i]=1
print(dict1)

010 内置函数 NP76 - NP93

在这里插入图片描述
在这里插入图片描述

NP76 列表的最值运算

在线编程跳转链接

s = input().split(" ")
ls = []
for i in s:
    ls.append(int(i))
print(max(ls), min(ls), sep = '\n')

NP77 朋友的年龄和

在线编程跳转链接

ls = [int(i) for i in input().split(" ")]
print(sum(ls))

NP78 正数输出器

在线编程跳转链接

n = eval(input())
print(abs(n))

NP79 字母转数字

在线编程跳转链接

print(ord(input()))

NP80 数字的十六进制

在线编程跳转链接

print(hex(int(input())))

NP81 数字的二进制表示

在线编程跳转链接

print(bin(int(input())))

NP82 数学幂运算

在线编程跳转链接

x, y = list(map(int, input().split(" ")))
print(pow(x, y))
print(pow(y, x))

NP83 错误出现的次数

在线编程跳转链接

s = input().split(" ")
print(s.count("0"))

NP84 列表中第一次出现的位置

在线编程跳转链接

s = list(input().split(" "))
print(s.index('NiuNiu'))

NP85 字符的类型比较

在线编程跳转链接

s = input()
print(s.isalpha())
print(s.isdigit())
print(s.isspace())

NP86 字符子串的查找

在线编程跳转链接

long_str = input()
print(long_str.find('NiuNiu'))

NP87 子串的数量

在线编程跳转链接

patten = input()
print(patten.count('Niu'))

NP88 句子拆分

在线编程跳转链接

s = input()
print(s.split(' '))

NP89 单词造句

在线编程跳转链接

lst = []
while True:
    w = input()
    if w == '0':
        break
    lst.append(w)
print(' '.join(lst))

NP90 修正错误的字母

在线编程跳转链接

s = input()
print(s.replace('a*', 'ab'))

NP91 小数位修正

在线编程跳转链接

f = float(input())
print(round(f, 2))

NP92 公式计算器

在线编程跳转链接

s = eval(input())
print(s)

NP93 创建集合

在线编程跳转链接

s = input().split(' ')
print(sorted(set(s)))

011 面向对象 NP94 - NP100

Python中的类和对象

Python面向对象三大特征
在这里插入图片描述

NP94 函数求差

在线编程跳转链接

def cal(a, b):
    return a - b
x = int(input())
y = int(input())
print(cal(x, y))
print(cal(y, x))

NP95 兔子的数量

在线编程跳转链接

def f(n):
    if n==1:
        return 2
    if n==2:
        return 3
    else:
        return f(n-1)+f(n-2)
n=int(input())
print(f(n))

NP96 球的表面积

在线编程跳转链接

import math as mt
 
def vol(n):
    return 4*mt.pi*(n**2)
 
list1=[1, 2, 4, 9, 10, 13]
for n in list1:
    print(round(vol(n),2))

NP97 班级管理

在线编程跳转链接

class Student:
    def __init__(self, name, stu_num, score, grade):
        self.name = name
        self.stu_num = stu_num
        self.score = score
        self.grade = grade
    #__str__方法用于返回对象的描述信息,如果不使用__str__方法,直接print,或者return,返回的是对象的内存地址。
    def __str__(self): 
        return ("%s's student number is %s, and his grade is %d. He submitted %s assignments, each with a grade of %s"
                % (self.name, self.stu_num, int(self.score), len(self.grade.split()), self.grade))
 
name1 = input()
stu_num1 = input()
score1 = input()
grade1 = input()
stu = Student(name1, stu_num1, score1, grade1)
print(stu)

NP98 修改属性1

在线编程跳转链接

class employee:
    def __init__(self,name,salary,age=-1):
        self.name=name
        self.salary=salary
        self.age=age
    def printclass(self):
        if self.age==-1:
            print("Error! No age")
        else:
            print("{}'salary is {}, and his age is {}".format(self.name,self.salary,self.age))
a=input()
b=int(input())
c=int(input())
e=employee(a,b)
e.printclass()
e.age=c 
e.printclass()

NP99 修改属性2

在线编程跳转链接

class Employee():
    def __init__(self, name, salary) -> None:
        self.name = name
        self.salary = salary
    def printclass(self):
        print(f"{self.name}'salary is {self.salary}, and his age is {self.age}")
         
 
name = input()
salary = int(input())
age = int(input())
 
e = Employee(name, salary)
if hasattr(e,'age'):
    e.printclass()
else:
    print(False)
    setattr(e,"age",age)
    e.printclass()

NP100 重载运算

在线编程跳转链接

class Coordinate():
    def __init__(self, x, y):
        self.x = x
        self.y = y
         
    def __str__(self):
        print((self.x, self.y))
         
    def __add__(self):
        self.x = x1 + x2
        self.y = y1 + y2
         
     
x1, y1 = map(int, input().split()) # 1.输入第一行两个数字
x2, y2 = map(int, input().split())  # 1.输入第二行两个数字
 
c1 = Coordinate(x1, y1)  # 2. 调用类
c1.__add__()  # 3. 调用__add__()函数,实现两组数据分别对应相加
c1.__str__()  # 4. 调用__str__()函数,打印(相加之后的x, 相加之后的y)

012 正则表达式 NP101 - NP103

在这里插入图片描述

NP101 正则查找网址

在线编程跳转链接

import re
http = input()
result = re.match('https://www',http,re.I)
print(result.span())

NP102 提取数字电话

在线编程跳转链接

import re
#导入模块
 
p=r'[-A-Za-z]+'
#第一个‘-’表示字符‘-’,A-Za-z表示匹配大小字母
#‘+’号表示连续匹配
 
text=input()
#输入测试字符串
 
print(re.sub(p,'',text))
#利用sub()函数过滤再输出

NP103 截断电话号码

在线编程跳转链接

import re
s = input()
r = re.match('[0-9-]+',s)
print(r.group())

推 荐:牛客题霸-经典高频面试题库

🌐 找工作神器-|笔试题库|面试经验|大厂面试题 👉 点击链接进行注册学习
在这里插入图片描述

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/21927.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

【软考软件评测师】第三十章 操作系统(PV操作与死锁)

【软考软件评测师】第三十章 操作系统&#xff08;PV操作与死锁&#xff09; 第三十章 操作系统&#xff08;PV操作与死锁&#xff09;【软考软件评测师】第三十章 操作系统&#xff08;PV操作与死锁&#xff09;第一部分 知识点集锦1.PV操作1&#xff09;P操作的定义2&#xf…

win11的文件属性默认显示全部,Windows11右键菜单修改为Win10模式的方法(手把手详细操作)

win11的文件属性默认显示全部&#xff0c;Windows11右键菜单修改为Win10模式的方法&#xff08;手把手详细操作&#xff09; 文章目录win11的文件属性默认显示全部&#xff0c;Windows11右键菜单修改为Win10模式的方法&#xff08;手把手详细操作&#xff09;Tips 1 先以管理员…

Source Map知多少?Golang手写SourceMap转换过程

文章目录一、问题背景二、Source Map 简介基本格式应用场景三、Source Map 的工作原理四、Source Map 的转换过程代码示例总结本文从原理的角度入手对 Source Map 进行了较为深入的分析&#xff0c;并从业务需要的角度出发&#xff0c;手动编写根据 Source Map 映射编码前后代码…

SpringBoot集成Mybatis项目实操

本文为《从零打造项目》系列第三篇文章&#xff0c;首发于个人网站。 《从零打造项目》系列文章 比MyBatis Generator更强大的代码生成器 SpringBoot项目基础设施搭建 前言 基于 orm-generate 项目可以实现项目模板代码&#xff0c;集成了三种 ORM 方式&#xff1a;Mybatis、M…

35m预应力简支梁桥毕业设计 课程设计-桥梁工程(计算书、8张CAD图)

35m预应力简支梁桥毕业设计 目 录 1、引言 1 2、桥型方案比选 2 2&#xff0e;1 桥梁设计原则 2 2.2方案一&#xff1a;25m预应力钢筋混凝土T梁桥 2 2.3方案二&#xff1a;25m预应力钢筋混凝土小箱梁 4 2.4桥墩方案比选 4 3、上部结构设计计算 5 3&#xff0e;1 设计资料及构造…

考研数据结构填空题整合

考研数据结构填空题整合 目录考研数据结构填空题整合一、ZYL组ZYL组一ZYL组二ZYL组三ZYL组四ZYL组五ZYL组六ZYL组七ZYL组八二、TJP组TJP组一TJP组二TJP组三三、LZH组LZH 组一LZH 组二LZH 组三LZH 组四LZH 组五LZH 组六LZH 组七四、LB组LB组一LB组二LB组三LB组四LB组五LB组六LB组…

FPGA实现精简版UDP通信,占资源很少但很稳定,提供2套工程源码

目录1.高端、中等和精简版UDP通信的选择2.精简版UDP通信实现方案3.工程1介绍及资源占用率和性能表现4.工程2介绍及资源占用率和性能表现5.上板调试验证6.福利&#xff1a;工程代码的获取1.高端、中等和精简版UDP通信的选择 FPGA实现UDP协议可难可易&#xff0c;具体根据项目需…

Python 函数转命令行界面库 -- Argsense CLI

argsense 是一个 python 命令行界面库, 是 click, fire, typer 之外的又一个选项. argsense 最大的特点是极低的侵入性设计和近乎零成本的上手难度, 如果你熟悉 python 函数是如何传参的 (这是大部分 python 初学者已经掌握的知识), 那么你就可以很快上手 argsense. 特性一览 …

大数据(9e)图解Flink窗口

文章目录1、代码模板1.1、pom.xml1.2、log4j.properties1.3、Java模板2、按键分区&#xff08;Keyed&#xff09;、非按键分区&#xff08;Non-Keyed&#xff09;2.1、Keyed2.2、Non-Keyed3、窗口的分类3.1、基于时间的窗口3.2、基于事件个数的窗口4、窗口函数5、示例代码5.1、…

TIA博途_水处理项目中开启累计运行时间最短的泵_程序示例

TIA博途_水处理项目中开启累计运行时间最短的泵_程序示例 需求: 有N台水泵,每个水泵统计累计运行时间。当满足条件时,根据设定开泵的数量,启动累计运行时间最短的对应数量的泵。故障切换时,也切换到运行时间最短的泵。 具体方法可参考以下内容: 如下图所示,打开TIA博途后…

【毕业设计】62-基于单片机的防酒驾\酒精浓度检测系统设计研究(原理图、源代码、仿真工程、低重复率参考设计、PPT)

【毕业设计】62-基于单片机的防酒驾\酒精浓度检测系统设计研究&#xff08;原理图、源代码、仿真工程、低重复率参考设计、PPT&#xff09;[toc] 资料下载链接 资料下载链接 资料链接&#xff1a;https://www.cirmall.com/circuit/33758/ 包含此题目毕业设计全套资料&#xf…

国科大课程自动评价脚本JS

国科大课程一键评估 操作流程&#xff1a; 方法 打开F12点击console/控制台复制粘贴下面代码回车 for(var i 0; i<1000; i) { if($("input[nameitem_"i"]").length) $("input[nameitem_"i"]").get(Math.round(Math.random()*2)…

C++11--lambda表达式--包装器--bind--1119

1.lambda表达式 lambda表达式书写格式&#xff1a;[捕捉列表] (参数列表) mutable -> 返回值类型 { 比较的方法 } int func() {int a, b, c, d, e;a b c d e 1;// 全部传值捕捉auto f1 []() {cout << a << b << c << d << e << …

BLE学习(3):ATT和GATT详解

本文章将介绍在面向连接的蓝牙模式中&#xff0c;ATT(attribute protocol,属性协议)和GATT(generic attribute profile,通用属性配置文件)这两个重要的协议层&#xff0c;它与蓝牙的数据传输密切相关。 1 设备之间如何建立连接(Gap层) 若BLE设备之间要进行数据传输&#xff0…

Qt5 QML TreeView currentIndex当前选中项的一些问题

0.前言 Qt5 QML Controls1.4 中的 TreeView 存在诸多问题&#xff0c;比如节点连接的虚线不好实现&#xff0c;currentIndex 的设置和 changed 信号的触发等。我想主要的原因在于 TreeView 是派生自 BasicTableView&#xff0c;而 TableView 内部又是由 ListView 实现的。 正…

二、openCV+TensorFlow入门

目录一、openCV入门1 - 简单图片操作2 - 像素操作二、TensorFlow入门1 - TensorFlow常量变量2 - TensorFlow运算本质3 - TensorFlow四则运算4 - tensorflow矩阵基础5 - numpy矩阵6 - matplotlib绘图三、神经网络逼近股票收盘均价&#xff08;案例&#xff09;1 - 绘制15天股票K…

编译原理 x - 练习题

简答题逆波兰后缀表达式和三元式序列源程序翻译成中间代码DAG优化正则文法 构造正则表达式正规式 改 上下文无关文法表示DFA有限状态机图移进-规约消除左递归文法-最左推导-短语LL(1)文法LR(0) | SLR(1)文法简答题 编译过程可分为前端和后端&#xff0c;描述一下前端和后端分别…

【设计模式】装饰者模式:以造梦西游的例子讲解一下装饰者模式,这也是你的童年吗?

文章目录1 概述1.1 问题1.2 定义1.3 结构1.4 类图2 例子2.1 代码2.2 效果图3 优点及适用场景3.1 优点3.2 适用场景1 概述 1.1 问题 众所周知&#xff0c;造梦西游3有四个角色&#xff0c;也就是师徒四人&#xff0c;这师徒四人每个人都有自己专属的武器和装备。假定我们以及设…

推荐10个Vue 3.0开发的开源前端项目

Vue 是一款用于构建用户界面的 JavaScript 框,它基于标准 的HTML、CSS 和 JavaScript 构建,并提供了一套声明式的、组件化的编程模型,用以帮助开发者高效地开发用户界面。目前,Vue 3.0正式版也发布了两年的时间,越累越多的开发者也用上了Vue 3.0。 对比Vue2.x,Vue 3.0在…

并发bug之源(二)-有序性

什么是有序性&#xff1f; 简单来说&#xff0c;假设你写了下面的程序&#xff1a; java int a 1; int b 2; System.out.println(a); System.out.println(b);但经过编译器/CPU优化&#xff08;指令重排序&#xff0c;和编程语言无关&#xff09;后可能就变成了这样&#x…