if -else 条件语句原理

#!/usr/bin/python
# coding utf-8
name = ''
if name == 'python':
    print('欢迎BOSS')
else:
    print('输入错误')
原文地址:https://www.cnblogs.com/huangjinshan/p/6150244.html