1 Star 0 Fork 1

zh_2000wwww/Bilibili_Linlili

forked from 李彦墨/Bilibili_Linlili 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
10_for循环.py 730 Bytes
一键复制 编辑 原始数据 按行查看 历史
李彦墨 提交于 2022-11-23 15:24 . Bilibili_Linlili
# 找出体温高于38的工号
temperature_dict = {"111": 36.5, "112": 36.6, "113": 38}
# temperature_dict.keys() 所有键
# temperature_dict.values() 所有值
# temperature_dict.items() 所有键值对
for staff_id, temperature in temperature_dict.items():
# 将字典里的元素以元组的形式存储到两个变量中
# 相当于
# for temperature_tuple in temperature_dict.items():
# staff_id = temperature_tuple[0]
# temperature = temperature_tuple[1]
if temperature >= 38:
print(staff_id)
for i in range(5, 10):
print(i) # 打印5到9
for num in range(2, 10, 2):
print(num) # 打印2到8的偶数/不取10
total = 0
for i in range(1, 101):
total += i
print(total)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/zh_2000wwww/bilibili_-linlili.git
git@gitee.com:zh_2000wwww/bilibili_-linlili.git
zh_2000wwww
bilibili_-linlili
Bilibili_Linlili
master

搜索帮助