博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Learn Python 012: for loop
阅读量:5949 次
发布时间:2019-06-19

本文共 599 字,大约阅读时间需要 1 分钟。

# 1vowels = 0consonants = 0for letter in 'supercalifragilisticexpialidocious':    if letter.lower() in 'aeiou':        vowels = vowels + 1    elif letter == ' ':        pass    else:        consonants = consonants + 1print('There are {} vowels in the text.'.format(vowels))print('And there are {} consonants in the text.'.format(consonants))# 2students = {    'male': ['Bob', 'Clark', 'Frank', 'Graig'],    'female': ['Alice', 'Emma', 'Helen']}for key in students.keys():    for name in students[key]:        if 'a' in name:            print(name)

 

转载于:https://www.cnblogs.com/mxyzptlk/p/7190998.html

你可能感兴趣的文章
oracle中create table with as和insert into with as语句
查看>>
kafka连接异常
查看>>
11g废弃的Hint - BYPASS_UJVC
查看>>
为什么工业控制系统需要安全防护?
查看>>
Mongodb部署记录[3]-主从搭建
查看>>
hive sql操作
查看>>
tomcat 深度优化
查看>>
127 - "Accordian" Patience
查看>>
nginc+memcache
查看>>
php正则匹配utf-8编码的中文汉字
查看>>
MemCache在Windows环境下的搭建及启动
查看>>
linux下crontab实现定时服务详解
查看>>
Numpy中的random模块中的seed方法的作用
查看>>
用java数组模拟登录和注册功能
查看>>
关于jsb中js与c++的相互调用
查看>>
UVA 122 Trees on the level 二叉树 广搜
查看>>
POJ-2251 Dungeon Master
查看>>
tortoisesvn的安装
查看>>
URAL 1353 Milliard Vasya's Function DP
查看>>
速读《构建之法:现代软件工程》提问
查看>>