首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
AI面试、笔试、校招、雇品
HR免费试用AI面试
最新面试提效必备
登录
/
注册
烦恼的磨洋工匠人整顿职场
获赞
0
粉丝
4
关注
4
看过 TA
280
兰州大学
2023
集成电路IC设计
IP属地:上海
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑烦恼的磨洋工匠人整顿职场吗?
发布(35)
评论
刷题
收藏
烦恼的磨洋工匠人整顿职场
关注TA,不错过内容更新
关注
2023-08-17 19:21
兰州大学 集成电路IC设计
题解 | #字符串之间的比较#
import sys a = input() b = input() print(a == b) print(a.lower() == b.lower())
0
点赞
评论
收藏
分享
2023-08-17 19:19
兰州大学 集成电路IC设计
题解 | #牛牛的逻辑运算#
import sys a = input().split() b = int(a[0]) c = int(a[1]) print(b and c) print(b or c) print(not b) print(not c)
0
点赞
评论
收藏
分享
2023-08-17 19:14
兰州大学 集成电路IC设计
题解 | #不低于与不超过#
import sys a = input().split() print(float(a[0]) <= float(a[1])) print(float(a[0]) >= float(a[2]))
0
点赞
评论
收藏
分享
2023-08-17 19:08
兰州大学 集成电路IC设计
题解 | #谁的数字大#
import sys a = input().split() print(int(a[0]) > int(a[1])) print(int(a[0]) < int(a[1]))
0
点赞
评论
收藏
分享
2023-08-17 17:26
兰州大学 集成电路IC设计
题解 | #朋友的年龄是否相等#
import sys a = input().split() print(int(a[0]) == int(a[1]))
0
点赞
评论
收藏
分享
2023-08-17 17:23
兰州大学 集成电路IC设计
题解 | #除法与取模运算#
import sys x = int(input()) y = int(input()) print(x//y, x%y) print("{:.2f}".format(x/y))
0
点赞
评论
收藏
分享
2023-08-17 17:11
兰州大学 集成电路IC设计
题解 | #乘法与幂运算#
import sys num1 = int(input()) num2 = int(input()) print(num1 * num2) print(num1 ** num2) #**代表幂运算
0
点赞
评论
收藏
分享
2023-08-17 17:07
兰州大学 集成电路IC设计
题解 | #牛牛的加减器#
import sys num1 = int(input()) num2 = int(input()) print(num1 + num2) print(num1 - num2)
0
点赞
评论
收藏
分享
2023-08-17 17:05
兰州大学 集成电路IC设计
题解 | #团队分组#
import sys group_list = ['Tom', 'Allen', 'Jane', 'William', 'Tony'] print(group_list[:2]) print(group_list[1:4]) print(group_list[-2:])
0
点赞
评论
收藏
分享
2023-08-17 16:57
兰州大学 集成电路IC设计
题解 | #用列表实现队列#
import sys a = int(input()) queue = [1, 2, 3, 4, 5] for i in range(2): queue.pop(0) print(queue) queue.append(a) print(queue)
0
点赞
评论
收藏
分享
2023-08-17 15:58
兰州大学 集成电路IC设计
题解 | #用列表实现栈#
import sys a = int(input()) stack = [1, 2, 3, 4, 5] stack.pop() print(stack) stack.pop() print(stack) stack.append(a) print(stack)
0
点赞
评论
收藏
分享
2023-08-17 14:14
兰州大学 集成电路IC设计
题解 | #牛牛的反转列表#
import sys num = [3, 5, 9, 0, 1, 9, 0, 3] num.reverse() print(num)
0
点赞
评论
收藏
分享
2023-08-17 09:51
兰州大学 集成电路IC设计
题解 | #淘汰排名最后的学生#
import sys a = input() a = list(a.split()) for i in range(3): a.pop() # a.pop(-1) # a.pop(-1) print(a)
0
点赞
评论
收藏
分享
2023-08-16 19:59
兰州大学 集成电路IC设计
题解 | #删除好友#
import sys a = input().split() b = input() a.remove(b) print(a)
0
点赞
评论
收藏
分享
2023-08-16 19:53
兰州大学 集成电路IC设计
题解 | #删除简历#
import sys a = input() a = a.split() #del(a[0]) # a.pop(0) a.remove(a[0]) print(a)
0
点赞
评论
收藏
分享
1
2
3
创作者周榜
更多
关注他的用户也关注了:
牛客网
牛客网在线编程
牛客网题解
牛客企业服务