Home > Backend Development > Python Tutorial > Share the simplest way to write a conditional judgment statement in python

Share the simplest way to write a conditional judgment statement in python

高洛峰
Release: 2017-03-16 17:01:35
Original
1311 people have browsed it

This article mainly introduces Python Tips for returning true or false values ​​(True or False). This article discusses the simplest condition Judgment statement writing method. This article gives For two concise writing methods, friends who need it can refer to the following code:

def isLen(strString):
    if len(strString)>6:
        return True
    else:
        return False
Copy after login

Maybe you have discovered that in Python 3, there is actually a way to complete it in just one line

Function

: The code is as follows:

>>> def isLen(strString):
       return True if len(strString)>6 else False
Copy after login

But. . . Could it be simpler?

How to use Python to express conditional statements more easily, just

for

fun :)One way is to use a list

Index

: The code is as follows:

>>> def isLen(strString):
       #这里注意false和true的位置, 多谢网友@小王的指正
       return [False,True][len(strString)>6]
Copy after login

The principle is very simple. The Boolean value True is evaluated as 1 by index, and False is equal to 0. Can it be simpler?

The above is the detailed content of Share the simplest way to write a conditional judgment statement in python. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template