码迷,mamicode.com
首页 > 编程语言 > 详细

46 Simple Python Exercises-Very simple exercises

时间:2019-04-19 18:05:55      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:The   cti   python   als   ret   new   rac   return   print   

 


4、Write a function that takes a character (i.e. a string of length 1) and returns True if it is a vowel, False otherwise.

def if_vowel(a):
a=a.lower()
if a in(‘a‘,‘e‘,‘i‘,‘o‘,‘u‘):
return True
else:
return False
print(if_vowel(‘A‘))


46 Simple Python Exercises-Very simple exercises

标签:The   cti   python   als   ret   new   rac   return   print   

原文地址:https://www.cnblogs.com/wangyanyan/p/10737264.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!