In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
This article introduces the relevant knowledge of "how to solve the problem of Python deduction, generator and slicing". In the operation of actual cases, many people will encounter such a dilemma, so let the editor lead you to learn how to deal with these situations. I hope you can read it carefully and be able to achieve something!
I. Experimental requirements
1. Understand and master the common operations in the sequence.
two。 Understand and master the usage of deduction and slicing and be able to solve practical problems.
2. Content of the experiment
1. Write a program to test the frequency of characters.
# use dict method1data = frequences=dict () for item in data: if item in frequences: frequences [item] + = 1 else: frequences [item] = 1print frequences#use dict method2frequences = dict () for item in data: frequences [item] = frequences.get (item 0) + 1print frequences#use defaultdictfrom collections import defaultdictfrequences = defaultdict (int) for item in data: frequences [item] + = 1print frequences.items () # use set and list typecount_set = set (data) count_list = [] for item in count_set: count_list.append ((item,data.count (item)) print count_list#use collections.Counterfrom collections import Counterfrequences = Counter (data) print frequences.items () print list (frequences.elements ()) # list all the elementsprint frequences.most_common (3)
2, write a program to find the sum of all odd numbers within 100.
Sum = 0for i in range (1m 100jue 2): sum = sum + I print (sum)
3, write a program to generate a list of 30 random integers, and then arrange the elements of the even subscript in descending order, while the elements of the odd subscript remain the same.
Import randomx = [random.randint (0100) for i in range (30)] # print (x) print x look at the original list y = x [:: 2] # print (y) print even coordinates y.sort (reverse=True) x [:: 2] = yprint (x) "how to solve the Python derivation, generator and slicing problem". Thank you for reading. If you want to know more about the industry, you can follow the website, the editor will output more high-quality practical articles for you!
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.