1 Star 0 Fork 0

哔卟哔卟/Python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Test7.py 540 Bytes
一键复制 编辑 原始数据 按行查看 历史
哔卟哔卟 提交于 2023-10-04 15:22 . 提交 Python 相关
# 利用 for 循环打印 1 ~ 10
# for i in range(1, 11):
# print(i)
# 利用 for 循环打印 2, 4, 6, 8, 10
# for i in range(2, 12, 2):
# print(i)
# 利用 for 循环打印 10 ~ 1
# for i in range(10, 0, -1):
# print(i)
# total = 0
# for i in range(1, 101):
# total += i
# print(f"total = {total}")
# total = 0
# for i in range(1, 5):
# if i == 3:
# continue
# total += i
# print(f"total = {total}")
total = 0
for i in range(1, 5):
if i == 3:
break
total += i
print(f"total = {total}")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/p_bart/python.git
git@gitee.com:p_bart/python.git
p_bart
python
Python
master

搜索帮助