条件流

If-Else
if-elif-else
更多信息,请访问 Python - if
a = 5
b = 6
if a > b:
    c = a
else:
    c = b
print(c)      
mehods = dir(str)
for method in mehods:
    if method.startswith("__"):
        continue
    print(method)      
if not
mehods = dir(str)
for method in mehods:
    if not method.startswith("__"):
        print(method)      
三元操作符
实际上是根据条件操作2个数,返回一个结果数
操作数1 if 条件 else 操作数2
a = 5
b = 6
c = a if a > b else b
print(c)