语法:
if 条件==条件:
#操作 print()
else:
#操作 print()
和其他编程语言的区别可能就是没有花括号用的一般为:冒号进行代替
其他语言为&& python中为 and 关键字
其他语言为 || python中为 or 关键字、
其他的都差不多
检查特定值是否不包含在列表中 not in
与之对应的是 in
users=['zhangsan','lisi','wangwu']
if 'zhangsan' not in users:
print("zhangsan not in users")
else:
print("zhangsan in users")
#print
别具匠心的 if-elif-else
跟别家的if else if else 一样的
使用列表时候检测列表是否为空
res=[]
if res:
for item in res:
print(item)
else:
print('sorry,list is null')
#print