第五章 if语句
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第五章 if语句相关的知识,希望对你有一定的参考价值。
#1. #A:if语句 Test = [1, 2, 3, 4, 5, 6] for value in Test: #注意:不能少 if 0 == value % 2 and 0 == value % 3: #注意:不能少 print("Type1", end = " ") elif 0 == value % 2 or 2 == value % 3: #注意:不能少 这里是 elif 而不是 else if print(‘Type2‘, end = " ") else: #注意:不能少 print("Type3", end = " ") #Type3 Type2 Type3 Type2 Type2 Type1 print("") #2. #A:not in Test = [2, 3, 4] Test1 = [1, 2, 3] for value in Test: if value not in Test1: print("not in: " + str(value), end = ‘ ‘) print("") #not in: 4 #3. #A:当变量是字符串类型且长度不为0,变量是列表(元组)类型且元素个数不为0时,充当if条件为True Test = [1, 2, 3] if Test: print("not Null") #not Null Test = (1, 2, 3) if Test: print("not Null") #not Null Test = "Str" if Test: print("not Null") #not Null
以上是关于第五章 if语句的主要内容,如果未能解决你的问题,请参考以下文章
《Python从入门到实践》--第五章 各种情形下使用if语句2 课后练习