首页
题库
公司真题
专项练习
面试题库
在线编程
面试
面试经验
AI 模拟面试
简历
求职
学习
基础学习课
实战项目课
求职辅导课
专栏&文章
竞赛
搜索
我要招人
发布职位
发布职位、邀约牛人
更多企业解决方案
在线笔面试、雇主品牌宣传
登录
/
注册
广龙宇
获赞
32
粉丝
0
关注
5
看过 TA
27
男
运城学院
2022
Python
IP属地:北京
暂未填写个人简介
私信
关注
拉黑
举报
举报
确定要拉黑广龙宇吗?
发布(81)
评论
刷题
广龙宇
关注TA,不错过内容更新
关注
2023-01-11 20:11
运城学院 Python
题解 | #菜品的价格#
foods = { 'pizza':10, 'rice':2, 'yogurt':5 } req = input() if req in foods.keys(): print(foods[req]) else: print(8)
0
点赞
评论
收藏
分享
2023-01-11 10:50
运城学院 Python
2023-01-11
在牛客打卡17天,今天也很努力鸭!
每日监督打卡
0
点赞
评论
收藏
分享
2023-01-10 17:32
运城学院 Python
题解 | #生成列表#
print(list(map(lambda i:i,input().split(' '))))
0
点赞
评论
收藏
分享
2023-01-10 17:31
运城学院 Python
题解 | #发送offer#
name=['Allen','Tom'] for item in name: print(f"{item}, you have passed our interview and will soon become a member of our company.") name[1]='Andy' for item in name: print(f"{item}, welcome to join us!")
0
点赞
评论
收藏
分享
2023-01-10 17:28
运城学院 Python
题解 | #截取用户名前10位#
print(input()[:10])
0
点赞
评论
收藏
分享
2023-01-10 17:24
运城学院 Python
题解 | #不用循环语句的重复输出#
print(input()*100)
0
点赞
评论
收藏
分享
2023-01-10 17:20
运城学院 Python
题解 | #格式化输出(三)#
name = input() print(name.strip())
0
点赞
评论
收藏
分享
2023-01-10 17:19
运城学院 Python
题解 | #格式化输出(二)#
name=input() print(name.lower()) print(name.upper()) if ' ' in name : strs = '' for item in name.split(' '): strs = strs + f"{item.capitalize()} " print(strs) else: print(name.capitalize())
0
点赞
评论
收藏
分享
2023-01-10 17:06
运城学院 Python
题解 | #单词的长度#
print(len(input()))
0
点赞
评论
收藏
分享
2023-01-10 17:05
运城学院 Python
题解 | #牛牛最好的朋友们#
print(input()+input())
0
点赞
评论
收藏
分享
2023-01-10 17:04
运城学院 Python
题解 | #十六进制数字的大小#
h = input() print(int(h,16))
0
点赞
评论
收藏
分享
2023-01-10 16:56
运城学院 Python
2023-01-10
在牛客打卡16天,今天学习:刷题 1 道/代码提交 2 次
每日监督打卡
0
点赞
评论
收藏
分享
2023-01-10 16:56
运城学院 Python
题解 | #为整数增加小数点#
n = float(int(input())) print(n) print(type(n))
0
点赞
评论
收藏
分享
2023-01-09 19:39
运城学院 Python
题解 | #小乐乐与欧几里得#
import math a, b = list(map(lambda i:int(i), input().split(' '))) ab = a*b while True: r = a % b if r != 0: a = b b = r else: # b 是最大公约数 # c 是最小公倍数 c = ab // b print(math.ceil(b + c)) break 为什么除的时候必须得//
0
点赞
评论
收藏
分享
2023-01-09 18:10
运城学院 Python
题解 | #2的n次方计算#
import math a = int(input()) print(2 << (a-1))
0
点赞
评论
收藏
分享
1
2
3
4
5
6
关注他的用户也关注了:
牛客网
牛客企业服务