Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can the ternary operators be used in python?

Answer Posted / chaitanya

The ternary operator is the operator that is used to show the conditional statements. This consists of the true or false values with a statement that has to be evaluated for it. The operator will be given as:

[on_true] if [expression] else [on_false]

x, y = 25, 50

big = x if x < y else y

This is the lowest priority operator that is used in making a decision that is based on the values of true or false. The expression gets evaluated like if x<y else y, in this case if x<y is true then the value is returned as big=x and if it is incorrect then big=y will be sent as a result.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Are tuples hashable?

827


What is docstring in Python?

940


Does python support multiple inheritance?

818


What are the key points of python?

891


How does python handle memory management?

1657


Do we need to call the explicit methods to destroy the memory allocated in python?

1401


What is the keyword to import a module in python?

797


What are the advantages of python?

826


Explain inheritance in python with example?

778


Which method removes leading and trailing blanks in a string?

823


How do I sort a dictionary by value?

869


Please explain what are the rules for local and global variables in python?

863


How do you define a function in python 3?

896


How do I quit python?

822


Is there a constructor in python?

863