惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
DataBreaches.Net
L
LangChain Blog
博客园_首页
J
Java Code Geeks
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
WordPress大学
WordPress大学
V
Visual Studio Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
C
Check Point Blog
IT之家
IT之家
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
aimingoo的专栏
aimingoo的专栏
D
Docker
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
I
InfoQ

噜啦 - 循环

修炼基本功:条件与循环 - 噜啦 修炼基本功:条件与循环 - 噜啦 for循环 - 噜啦
for循环 - 噜啦
博主: 噜啦 · 2019-09-06 · via 噜啦 - 循环

代码

chinese_zodiac = '猴鸡狗猪鼠牛虎兔龙蛇马羊'

#遍历字符串
for cz in chinese_zodiac:
    print(cz)

for i in range(1,13):
    print(i)

for year in range(2000,2019):
    print('%s 的生肖是 %s' %(year, chinese_zodiac[year % 12]))
    

演示

....

....

赞赏作者

如果觉得我的文章对你有用,请随意赞赏