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

推荐订阅源

OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - Franky
T
Tailwind CSS Blog
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
博客园 - 叶小钗
N
Netflix TechBlog - Medium
罗磊的独立博客
量子位
MyScale Blog
MyScale Blog
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
GbyAI
GbyAI
B
Blog
腾讯CDC
爱范儿
爱范儿
Recent Announcements
Recent Announcements
有赞技术团队
有赞技术团队
F
Fortinet All Blogs
雷峰网
雷峰网
G
Google Developers Blog
Google DeepMind News
Google DeepMind News

噜啦 - 循环

修炼基本功:条件与循环 - 噜啦 修炼基本功:条件与循环 - 噜啦 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]))
    

演示

....

....

赞赏作者

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