In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/02 Report--
This article mainly explains "Python sentence optimization and skills", interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let Xiaobian take you to learn "Python sentence optimization and skills"!
1. or and
In an if conditional statement, for an or expression, the variable with a higher probability of being true should be written before or, while and should be delayed.
2. Use type less when checking the type of an object
To use isinstance, check if int is of type int isinstance(num,int) returns true.
3.eval is evil
eval is an expression that treats strings as valid expressions. But there are security holes.
if that object you are use is not a trust source, you should avoid using eval and use ast.literal_eval instead.
4. Use enumerate() to get the index and value of a sequence iteration
enumerate(iterable object, starting subscript default 0)
5. i +=1 is not equal to ++i
In Python ++i is actually +(+i), where + represents a positive sign.
6. For…else for i in rang(4):
if i==4:
break
else:
print("else is run")
If the for loop ends with a break then else does not print, if the for loop ends naturally then else will print.
7.Avoid adding return statement def test(a) in finally statement:
try:
if a
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.