In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article shows you how to use conditional operators in Python, which is concise and easy to understand, which will definitely brighten your eyes. I hope you can get something through the detailed introduction of this article.
Code implementation
A = 30b = 5cm print ('an is larger!') If a > b else print ('b is larger!') # get a larger value between an and b max = an if a > b else bprint (max)
Code run output:
fifty
Program analysis
# conditional operator (ternary operator)
# Syntax: statement 1 if conditional expression else statement 2
# execution process:
When the # conditional operator is executed, it evaluates the conditional expression first.
# if the result is True, execute statement 1 and return the execution result
# if the result is False, execute statement 2 and return the execution result
For example, the following statement:
# print ('Hello') if False else print ('Hello')
The output result is Hello, because the statement after if is first judged to be false, so print ("Hello") does not execute, then the statement after else is executed.
The above is how to use conditional operators in Python. Have you learned any knowledge or skills? If you want to learn more skills or enrich your knowledge reserve, you are welcome to follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.