In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)05/31 Report--
Python how to use dictionaries and functions to achieve switch case function, I believe that many inexperienced people do not know what to do, so this paper summarizes the causes of the problem and solutions, through this article I hope you can solve this problem.
Python does not have the syntax of switch-case, such as Cumberbatch grammar, Java, etc. However, this feature, such as Dictionary and lambda anonymous function features, is used to replace the implementation.
Dictionary + function realizes four operations in switch mode: (operators in switch only need to be judged once, which is different from if and elsif judgment)
Law 1:
-- Code
[root@bigdata01 ~] # cat t1.py
#! / usr/bin/python
# coding:utf-8
Def add (XBI y):
Return Xeroy
Def sub (XBI y):
Return Xmury
Def mul (XBI y):
Return Xeroy
Def div (XBI y):
Return x/y
Operator = {"+": add, "-": sub, "*": mul, "/": div}
Def f (XMagneol y):
Print operator.get (o) (xQuery y)
F (2, "+", 2)
F (2,-", 2)
F (2, "*", 2)
F (2, / ", 2)
-- Operation
[root@bigdata01 ~] # python t1.py
four
0
four
one
Law 2:
-- Code
[root@bigdata01 ~] # cat t2.py
Def calc (type,x,y):
Calculation = {'+': lambda: X
'*': lambda:x-y
'-': lambda:x*y
'/': lambda:x/y}
Return calculation [type] ()
Result1 = calc ('+', 3pm 6)
Result2 = calc ('-', 3pm 6)
Result3 = calc ('*', 3pm 6)
Result4 = calc ('/', 3pm 6)
Print result1
Print result2
Print result3
Print result4
-- Operation
[root@bigdata01 ~] # python t2.py
nine
eighteen
-3
0
Using key > in python dictionary is equivalent to value call corresponding function in switch,python dictionary in other languages > equivalent to case in other languages.
After reading the above, have you mastered how python uses dictionaries and functions to achieve switch case functions? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!
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.