python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习6c
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习6c相关的知识,希望对你有一定的参考价值。
#!/usr/bin/python3
sentence = 'Jaded zombies acted quaintly but kept driving their oxen forward.'
numVowels = 0
numCons = 0
for char in sentence:
if char == 'a' or char == 'e' or char == 'i' or char == 'o' or char == 'u':
numVowels += 1
else:
numCons += 1
print('numVowels is: ' + str(numVowels))
print('numCons is: ' + str(numCons))
'''
MITx 600.1x | Week 1 | Python Basics | 2. Core Elements of Programs | Exercise 6c
numVowels is: 20
numCons is: 45
'''
以上是关于python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习6c的主要内容,如果未能解决你的问题,请参考以下文章
python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习5a
python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习5b
python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习5c
python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习5d
python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习5e
python MITx 600.1x |第1周| Python基础知识| 2.程序的核心要素|练习6c