当前位置:网站首页>Exercise: even sum, threshold segmentation and difference (two basic questions of list object)
Exercise: even sum, threshold segmentation and difference (two basic questions of list object)
2022-04-23 17:29:00 【Dream spirit_ cq】
Python Official website : https://www.python.org/
here , only python the front . Unfortunately, it's the original English version . therefore , I want to practice English reading .🧐🧐
Self study is not a mysterious thing , A person's self-study time is always longer than that in school , There are always more times when there are no teachers than when there are teachers .
—— Hua Luogeng
note : Even sum 、 Threshold segmentation and subtraction ( list Two basic questions of the object )
One 、 Even sum
Code
def sum_of_evens(*evens):
''' Find the sum of even numbers in the input vector '''
tem_lis = []
for i in evens:
if str(i).isdigit() is False:
tem_lis.extend(list(i)) # Cluster collection .
else:
tem_lis.append(i) # Single parameter collection .
tem = []
for i in tem_lis:
if i % 2 == 0: # Remove the odd number .
tem.append(i)
return sum(tem) # Return and value .
print(cut_line(), color(1, 'f_green')) # Print split lines .
print(f"{
'':>8} Pass it on directly , Output :{
sum_of_evens(1, 3, 6, 9)}") # Pass it on directly .
s = sum_of_evens # Alias function .
print(f"\n\n{
'':>8}list Cluster transmission parameters , Output :{
s([1, 9, 8, 10, 13])}") # Cluster transmission parameters .
print(f"\n\n{
'':>8}tuple The ginseng , Output :{
s((1, 9, 8, 5, 12, 10, 13))}") # Cluster transmission parameters .
print(f"\n\n{
'':>8}list Mixed transmission , Output :{
s(1, 2, [1, 8, 10, 13], 3, 8)}") # Single 、 Cluster mixed transmission .
print(f"\n\n{
'':>8}tuple Mixed transmission , Output :{
s(1, 2, (1, 8, 13), 3, 8)}") # Single 、 Cluster mixed transmission .
print(f"{
color(0)}{
cut_line()}") # Print split lines .
wait()
Running effect
Two 、 Threshold segmentation and subtraction
Code
def difference_between_L(n, L=0):
''' Returns the absolute value of the difference between the sum of the new set divided by the threshold , If there are two threshold elements in the input set , Split with first out .'''
tem, tem2 = [], [] # Initialize new collection .
flag = False # The initial value of the partition ID is false .
for i in n:
if i == L:
flag = True # Segmentation threshold encountered , Set the division mark to true .
print(f"\n Segmentation threshold :{
L}")
L = '' # Set null character , Avoid not collecting the segmentation threshold of the second occurrence .
continue # End this cycle , To avoid collecting segmentation thresholds .
if flag is True:
tem2.append(i)
else:
tem.append(i)
print(f"\n Split set :\n\n{
tem},{
tem2}")
return abs(sum(tem) - sum(tem2))
db_L = difference_between_L # Alias function .
n = 2, 5, 2, 6, 0, 2, 7, 6, 0, 17, 3
print(cut_line())
print(f"{
cut_line()}{
'':>4} Input :{
n}\
\n\n{
'':>16} Output :{
color(db_L(n, 7), 'f_green')}{
cut_line()}")
wait()
Running effect
complete Python Code
My solution to the problem , Code comments have been incorporated , I won't repeat it in my blog .
( If you can't make clear the function from the statement annotation , Please leave a message in the comment area for advice and discussion .)
#!/sur/bin/env python
# coding: utf-8
''' filename: /sdcard/qpython/tem.py The dream spirit _cq Code yard '''
from mypythontools import color, wait, cut_line # Load the function to be used in the required code module from the self code tool module .
def sum_of_evens(*evens):
''' Find the sum of even numbers in the input vector '''
tem_lis = []
for i in evens:
if str(i).isdigit() is False:
tem_lis.extend(list(i)) # Cluster collection .
else:
tem_lis.append(i) # Single parameter collection .
tem = []
for i in tem_lis:
if i % 2 == 0: # Remove the odd number .
tem.append(i)
return sum(tem) # Return and value .
print(cut_line(), color(1, 'f_green')) # Print split lines .
print(f"{
'':>8} Pass it on directly , Output :{
sum_of_evens(1, 3, 6, 9)}") # Pass it on directly .
s = sum_of_evens # Alias function .
print(f"\n\n{
'':>8}list Cluster transmission parameters , Output :{
s([1, 9, 8, 10, 13])}") # Cluster transmission parameters .
print(f"\n\n{
'':>8}tuple The ginseng , Output :{
s((1, 9, 8, 5, 12, 10, 13))}") # Cluster transmission parameters .
print(f"\n\n{
'':>8}list Mixed transmission , Output :{
s(1, 2, [1, 8, 10, 13], 3, 8)}") # Single 、 Cluster mixed transmission .
print(f"\n\n{
'':>8}tuple Mixed transmission , Output :{
s(1, 2, (1, 8, 13), 3, 8)}") # Single 、 Cluster mixed transmission .
print(f"{
color(0)}{
cut_line()}") # Print split lines .
wait()
def difference_between_L(n, L=0):
''' Returns the absolute value of the difference between the sum of the new set divided by the threshold , If there are two threshold elements in the input set , Split with first out .'''
tem, tem2 = [], [] # Initialize new collection .
flag = False # The initial value of the partition ID is false .
for i in n:
if i == L:
flag = True # Segmentation threshold encountered , Set the division mark to true .
print(f"\n Segmentation threshold :{
L}")
L = '' # Set null character , Avoid not collecting the segmentation threshold of the second occurrence .
continue # End this cycle , To avoid collecting segmentation thresholds .
if flag is True:
tem2.append(i)
else:
tem.append(i)
print(f"\n Split set :\n\n{
tem},{
tem2}")
return abs(sum(tem) - sum(tem2))
db_L = difference_between_L # Alias function .
n = 2, 5, 2, 6, 0, 2, 7, 6, 0, 17, 3
print(cut_line())
print(f"{
cut_line()}{
'':>4} Input :{
n}\
\n\n{
'':>16} Output :{
color(db_L(n, 7), 'f_green')}{
cut_line()}")
wait()
Last one : Chinese character extraction of packet ( character string , no need re , use in )
my HOT Bo :
- use pandas Solve a small problem (1913 read )
- Iteratable object and four functions (1042 read )
- “ Happy number ” Judge (1201 read )
- Roman digital converter ( Construct element module )(1894 read )
- Rome digital ( converter | Luo )(2529 read )
- Hot: Give Way QQ Group nickname color change code (15718 read )
- Fibonacci sequence ( recursive | for )(3233 read )
- The largest rectangle in the histogram (1623 read )
- Repeat start and end of sorting array elements (1215 read )
- Telephone dialing keyboard letter combination (1277 read )
- Password strength detector (1730 read )
- Find the balance point of the list (1787 read )
- Hot: String statistics (3471 read )
- Hot: Nim game ( Smart version starts )(3327 read ) Nim game ( Optimized version )(898 read )
Recommended conditions
Click to read a thousand

Excellent articles :
- A good writer recommends :《python Complete self study course 》 Qi Wei manuscript free Serial
- OPP The three major characteristics : In the package property
- Understand through built-in objects python'
- Regular expressions
- python in “*” The role of
- Python A complete self-study manual
- Walrus operators
- Python Medium `!=` And `is not` Different
- The right way to learn programming
source : Laoqi classroom
Python Getting started 【Python 3.6.3】
A good writer recommends :
- 【8 Application fields of large programming languages 】 Don't worry about choosing Linguistic Programming , Let's see what they can do first
- Good habits of reliable programmers
CSDN Practical skills blog :
版权声明
本文为[Dream spirit_ cq]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231722007760.html
边栏推荐
- 1-2 characteristics of nodejs
- Solution architect's small bag - 5 types of architecture diagrams
- Perception of linear algebra 2
- Wiper component encapsulation
- El date picker limits the selection range from the current time to two months ago
- Use of Shell sort command
- How to change input into text
- Generating access keys using JSON webtoken
- Baidu Map 3D rotation and tilt angle adjustment
- ASP. Net core configuration options (Part 1)
猜你喜欢
stm32入门开发板选野火还是正点原子呢?
Flash project cross domain interception and DBM database learning [Baotou cultural and creative website development]
How to change input into text
Understanding of RPC core concepts
If you start from zero according to the frame
ASP. Net core JWT certification
索引:手把手教你索引从零基础到精通使用
Perception of linear algebra 2
HCIP第五次实验
[registration] tf54: engineer growth map and excellent R & D organization building
随机推荐
freeCodeCamp----prob_ Calculator exercise
node中,如何手动实现触发垃圾回收机制
Conversion between hexadecimal numbers
JVM类加载机制
[simple understanding of database]
Some problems encountered in recent programming 2021 / 9 / 8
ASP. Net core dependency injection service life cycle
flink 学习(十二)Allowed Lateness和 Side Output
JS failed to change all variables and changed to the return method. Finally, the problem was solved
STM32 entry development board choose wildfire or punctual atom?
Abnormal resolution of Xiaomi camera
Metaprogramming, proxy and reflection
Solution architect's small bag - 5 types of architecture diagrams
Using quartz under. Net core - calendar of [6] jobs and triggers
为什么有些人说单片机简单,我学起来这么吃力?
Qt 修改UI没有生效
Model problems of stock in and stock out and inventory system
Summary of common websites
Open futures, open an account, cloud security or trust the software of futures companies?
Detailed explanation of C webpai route