简体   繁体   中英

Python Lambda function to check if a variable is NULL or empty or None

Just trying to understand lambda function

problem:- variable "sep" should return "-" if variable "txt" is not null or empty or none. Below is what I tried, but it's full of syntax error

txt="askjdh"
sep=lambda x: '-' if txt

sep=lambda x: '-' if txt else '' ?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM