Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to overload python ternary operator?
The ternary operator cannot be overloaded. Though you can wrap it up in a lambda/function and use it. For
example
result = lambda x: 1 if x < 3 else 10 print(result(2)) print(result(1000))
Output
This will give the output −
1 10
Advertisements
