python题库刷题训练软件_Python基础练习100题 ( 11~ 20)

刷题继续

上一期和大家分享了前10道题,今天继续来刷11~20

Question 11:

Write a program which accepts a sequence of comma separated 4 digit binary numbers as its input and then check whether they are divisible by 5 or not. The numbers that are divisible by 5 are to be printed in a comma separated sequence.

Example:

0100,0011,1010,1001

Then the output should be:

1010

Notes: Assume the data is input by console.

解法一

def check(x): # check function returns true if divisible by 5

return int(x,2)%5 == 0 # int(x,b) takes x as string and b as base from which

# it will be converted to decimal

data = input().split(',')

data = list(filter(check,data)) # in filter(func,object) function, elements are picked from 'data' if found True by 'check' function

print(",".join(data))

解法二

value = []

items=[int(x) for x in input().split(',')]

result = " ".join(str(x) for x in items if x %5==0 )

print(",".join(result))

解法三

data = input().split(',')

data = list(filter(lambda i:int(i,2)%5==0,data))

print(",".join(data))

Question 12:

Write a program, which will find all such numbers between 1000 and 3000 (both included) such that each digit of the number is an even number.The numbers obtained should be printed in a comma-separated sequence on a single line.

解法一

values = []

for i in range(1000, 3001):

s = str(i)

if (int(s[0])%2==0) and (int(s[1])%2==0) and (int(s[2])%2==0) and (int(s[3])%2==0):

values.append(s)

print (",".join(values))

解法二

lst = []

for i in range(1000,3001):

flag = 1

for j in str(i): # every integer number i is converted into string

if ord(j)%2 != 0: # ord returns ASCII value and j is every digit of i

flag = 0 # flag becomes zero if any odd digit found

if flag == 1:

lst.append(str(i)) # i is stored in list as string

print(",".join(lst))

解法三

def check(element):

return all(ord(i)%2 == 0 for i in element) # all returns True if all digits i is even in element

lst = [str(i) for i in range(1000,3001)] # creates list of all given numbers with string data type

lst = list(filter(check,lst)) # filter removes element from list if check condition fails

print(",".join(lst))

解法四

lst = [str(i) for i in range(1000,3001)]

lst = list(filter(lambda i:all(ord(j)%2 == 0 for j in i),lst )) # using lambda to define function inside filter function

print(",".join(lst))

Question 13:

Write a program that accepts a sentence and calculate the number of letters and digits.

Suppose the following input is supplied to the program:

hello world! 123

Then, the output should be:

LETTERS 10

DIGITS 3

解法一

text_input = input()

d={"DIGITS":0, "LETTERS":0,'SPACE':0}

d['DIGITS']= sum(c.isdigit() for c in text_input)

d['LETTERS']= sum(c.isalpha() for c in text_input)

d['SPACE'] = sum(c.isspace() for c in text_input)

for k,v in d.items():

print(k,v)

解法二

word = input()

letter,digit = 0,0

for i in word:

if ('a'<=i and i<='z') or ('A'<=i and i<='Z'):

letter+=1

if '0'<=i and i<='9':

digit+=1

print("LETTERS {0}\nDIGITS {1}".format(letter,digit))

解法三

word = input()

letter,digit = 0,0

for i in word:

letter+=i.isalpha() # returns True if alphabet

digit+=i.isnumeric() # returns True if numeric

print("LETTERS %d\nDIGITS %d"%(letter,digit)) # two different types of formating method is shown in both solution

Question 14:

Write a program that accepts a sentence and calculate the number of upper case letters and lower case letters.

Suppose the following input is supplied to the program:

Hello world!

Then, the output should be:

UPPER CASE 1

LOWER CASE 9

解法一

word = input()

upper,lower = 0,0

for i in word:

if 'a'<=i and i<='z' :

lower+=1

if 'A'<=i and i<='Z':

upper+=1

print("UPPER CASE {0}\nLOWER CASE {1}".format(upper,lower))

解法二

text_input = input()

d={"UPPER CASE":0, "LOWER CASE":0}

for c in text_input:

if c.isupper():

d["UPPER CASE"]+=1

elif c.islower():

d["LOWER CASE"]+=1

else:

pass

print ("UPPER CASE", d["UPPER CASE"])

print ("LOWER CASE", d["LOWER CASE"])

解法三

word = input()

upper = sum(1 for i in word if i.isupper())

lower = sum(1 for i in word if i.islower())

print("UPPER CASE {0}\nLOWER CASE {1}".format(upper,lower))

Question 15:

Write a program that computes the value of a+aa+aaa+aaaa with a given digit as the value of a.

Suppose the following input is supplied to the program:

9

Then, the output should be:

11106

解法一

a = input()

total,tmp = 0,str() # initialing an integer and empty string

for i in range(4):

tmp+=a # concatenating 'a' to 'tmp'

total+=int(tmp) # converting string type to integer type

print(total)

解法二

a = input()

total = int(a) + int(2*a) + int(3*a) + int(4*a) # N*a=Na, for example a="23", 2*a="2323",3*a="232323"

print(total)

Question 16:

Use a list comprehension to square each odd number in a list. The list is input by a sequence of comma-separated numbers.

Suppose the following input is supplied to the program:

1,2,3,4,5,6,7,8,9

Then, the output should be:

1,3,5,7,9

解法一

values = input()

numbers = [x for x in values.split(",") if int(x)%2!=0]

print (",".join(numbers))

Question 17:

Write a program that computes the net amount of a bank account based a transaction log from console input. The transaction log format is shown as following:

D 100

W 200

D means deposit while W means withdrawal.

Suppose the following input is supplied to the program:

D 300

D 300

W 200

D 100

Then, the output should be:

500

解法一

netAmount = 0

while True:

s = input()

if not s:

break

values = s.split(" ")

operation = values[0]

amount = int(values[1])

if operation=="D":

netAmount+=amount

elif operation=="W":

netAmount-=amount

else:

pass

print(netAmount)

解法二

total = 0

while True:

s = input().split()

if not s: # break if the string is empty

break

cm,num = map(str,s)

if cm=='D':

total+=int(num)

if cm=='W':

total-=int(num)

print(total)

Question 18:

A website requires the users to input username and password to register. Write a program to check the validity of password input by users.

Following are the criteria for checking the password:

At least 1 letter between [a-z]

At least 1 number between [0-9]

At least 1 letter between [A-Z]

At least 1 character from [$#@]

Minimum length of transaction password: 6

Maximum length of transaction password: 12

Your program should accept a sequence of comma separated passwords and will check them according to the above criteria. Passwords that match the criteria are to be printed, each separated by a comma.

Example

If the following passwords are given as input to the program:

ABd1234@1,a F1#,2w3E*,2We3345

Then, the output of the program should be:

ABd1234@1

解法一

import re

value = []

items=[x for x in input().split(',')]

for p in items:

if (len(p)<6 or len(p)>12):

break

elif not re.search("[a-z]",p):

break

elif not re.search("[0-9]",p):

break

elif not re.search("[A-Z]",p):

break

elif not re.search("[$#@]",p):

break

elif re.search("\s",p):

break

else:

value.append(p)

break

print (",".join(value))

解法二

def is_low(x): # Returns True if the string has a lowercase

for i in x:

if 'a'<=i and i<='z':

return True

return False

def is_up(x): # Returns True if the string has a uppercase

for i in x:

if 'A'<= i and i<='Z':

return True

return False

def is_num(x): # Returns True if the string has a numeric digit

for i in x:

if '0'<=i and i<='9':

return True

return False

def is_other(x): # Returns True if the string has any "$#@"

for i in x:

if i=='$' or i=='#' or i=='@':

return True

return False

s = input().split(',')

lst = []

for i in s:

length = len(i)

if 6 <= length and length <= 12 and is_low(i) and is_up(i) and is_num(i) and is_other(i): #Checks if all the requirments are fulfilled

lst.append(i)

print(",".join(lst))

解法三

def check(x):

cnt = (6<=len(x) and len(x)<=12)

for i in x:

if i.isupper():

cnt+=1

break

for i in x:

if i.islower():

cnt+=1

break

for i in x:

if i.isnumeric():

cnt+=1

break

for i in x:

if i=='@' or i=='#'or i=='$':

cnt+=1

break

return cnt == 5 # counting if total 5 all conditions are fulfilled then returns True

s = input().split(',')

lst = filter(check,s) # Filter function pick the words from s, those returns True by check() function

print(",".join(lst))

解法四

import re

s = input().split(',')

lst = []

for i in s:

cnt = 0

cnt+=(6<=len(i) and len(i)<=12)

cnt+=bool(re.search("[a-z]",i)) # here re module includes a function re.search() which returns the object information

cnt+=bool(re.search("[A-Z]",i)) # of where the pattern string i is matched with any of the [a-z]/[A-z]/[0=9]/[@#$] characters

cnt+=bool(re.search("[0-9]",i)) # if not a single match found then returns NONE which converts to False in boolean

cnt+=bool(re.search("[@#$]",i)) # expression otherwise True if found any.

if cnt == 5:

lst.append(i)

print(",".join(lst))

Question 19:

You are required to write a program to sort the (name, age, score) tuples by ascending order where name is string, age and score are numbers. The tuples are input by console. The sort criteria is:

1: Sort based on name

2: Then sort based on age

3: Then sort by score

The priority is that name > age > score.

If the following tuples are given as input to the program:

Tom,19,80

John,20,90

Jony,17,91

Jony,17,93

Json,21,85

Then, the output of the program should be:

[('John', '20', '90'), ('Jony', '17', '91'), ('Jony', '17', '93'), ('Json', '21', '85'), ('Tom', '19', '80')]

解法一

lst = []

while True:

s = input().split(',')

if not s[0]: # breaks for blank input

break

lst.append(tuple(s))

lst.sort(key= lambda x:(x[0],x[1],x[2]))

print(lst)

Question 20:

Define a class with a generator which can iterate the numbers, which are divisible by 7, between a given range 0 and n.

解法一

class Test:

def generator(self,n):

return [i for i in range(n) if i%7==0]

n = int(input())

num = Test()

lst = num.generator(n)

print(lst)

源代码下载

这十道题的代码在我的github上,如果大家想看一下每道题的输出结果,可以点击以下链接下载:

我的运行环境Python 3.6+,如果你用的是Python 2.7版本,绝大多数不同就体现在以下3点:

raw_input()在Python3中是input()

print需要加括号

fstring可以换成.format(),或者%s,%d

谢谢大家,我们下期见!希望各位朋友不要吝啬,把每道题的更高效的解法写在评论里,我们一起进步!!!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/469127.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

如何学习计算机图形学

http://blog.csdn.net/szchtx/article/details/6916675转载于:https://www.cnblogs.com/ArcherHuang/p/6574560.html

shell for循环

weiqifaubuntu:~/qcom$ for i in $(seq 1 1 10) > do > echo "hello World" > done hello World hello World hello World hello World hello World hello World hello World hello World hello World hello World weiqifaubuntu:~/qcom$ 输入for i in $(s…

西门子s7-200解密软件下载_西门子S7-200/300/400通讯方式汇总,超级全面

1西门子 200 plc 使用 MPI 协议与组态王进行通讯时需要哪些设置?1)在运行组态王的机器上需要安装西门子公司提供的 STEP7 Microwin 3.2 的编程软件&#xff0c;我们的驱动需要调用编程软件提供的 MPI 接口库函数;2)需要将 MPI 通讯卡 CP5611 卡安装在计算机的插槽中&#xff0…

如何监控NVIDIA GPU 的运行状态和使用情况

设备跟踪和管理正成为机器学习工程的中心焦点。这个任务的核心是在模型训练过程中跟踪和报告gpu的使用效率。 有效的GPU监控可以帮助我们配置一些非常重要的超参数&#xff0c;例如批大小&#xff0c;还可以有效的识别训练中的瓶颈&#xff0c;比如CPU活动(通常是预处理图像)占…

进程和线程的本质和区别

进程是什么&#xff1f; 程序并不能单独运行&#xff0c;只有将程序装载到内存中&#xff0c;系统为它分配资源才能运行&#xff0c;而这种执行的程序就称之为进程。程序和进程的区别就在于&#xff1a;程序是指令的集合&#xff0c;它是进程运行的静态描述文本&#xff1b;进程…

HBase学习笔记——概念及原理

1.什么是HBase HBase – Hadoop Database&#xff0c;是一个高可靠性、高性能、面向列、可伸缩的分布式存储系统&#xff0c;利用HBase技术可在廉价PC Server上搭建起大规模结构化存储集群。HBase利用Hadoop HDFS作为其文件存储系统&#xff0c;利用Hadoop MapReduce来处理HBas…

.bat是什么语言_简单说说当我们打开网页时,浏览器到底做了什么?

前言&#xff1a;为什么我们需要掌握浏览器的原理作为一名前端研发&#xff0c;平日里打交道最多的&#xff0c;就是各式各样的客户端。不论你是针对pc端还是移动端&#xff0c;甚至是专门在微信端做前端研发&#xff0c;都需要跟一样东西接触——浏览器。不知道你有没有留意过…

花书《深度学习》代码实现:02 概率部分:概率密度函数+期望+常见概率分布代码实现

1 概率 1.1 概率与随机变量 频率学派概率 (Frequentist Probability)&#xff1a;认为概率和事件发⽣的频率相关。贝叶斯学派概率 (Bayesian Probability)&#xff1a;认为概率是对某件事发⽣的确定程度&#xff0c;可以理解成是确信的程度。随机变量 (Random Variable)&…

内存泄露Lowmemorykiller分析

01 前言 最近疫苗事情非常火热,这件事情让我对刘强东有点刮目相看,我们需要更多的人关注曝光此类问题 02 正文 Android Kernel 会定时执行一次检查,杀死一些进程,释放掉内存。Low memory killer 是定时进行检查。Low memory killer 主要是通过进程的oom_adj 来判定进程的…

腾讯官网生成qq在线客服代码

http://jingyan.baidu.com/article/e2284b2b42ce8ce2e6118ddd.html转载于:https://www.cnblogs.com/diyunpeng/p/6576696.html

TabError: inconsistent use of tabs and spaces in indentation

本文使用PyCharm的格式化代码功能解决TabError: inconsistent use of tabs and spaces in indentation。 1、提出问题&#xff1a; 当把代码从别处复制进来PyCharm&#xff0c;然后运行报错&#xff1a;TabError: inconsistent use of tabs and spaces in indentation 2、 分…

python 默认参数_有趣的 Python 特性 3 | 当心默认可变参数这个大猪蹄子。

本文字数&#xff1a;1575 字阅读本文大概需要&#xff1a;4 分钟写在之前Python 提供了很多让使用者觉得舒服至极的功能特性&#xff0c;但是随着不断的深入学习和使用 Python&#xff0c;我发现其中存在着许多玄学的输出与之前预想的结果大相径庭&#xff0c;这个对于初学者来…

Linux内核模块编译

Linux内核模块是一种可被动态加载和卸载的可执行程序。通过内核模块可以扩展内核功能,内核模块通常用于设备驱动、文件系统等。如果没有内核模块,需要向内核添加功能就需要自发代码、重新编译内核、安装新内核等步骤。 内核空间中不止一个程序试图访问驱动程序模块,导致一个…

AI-无损检测方向速读:基于深度学习的表面缺陷检测方法综述

1 表面缺陷检测的概念 表面缺陷检测是机器视觉领域中非常重要的一项研究内容, 也称为 AOI (Automated optical inspection) 或 ASI (Automated surface inspection)&#xff0c;它是利用机器视觉设备获取图像来判断采集图像中是否存在缺陷的技术。 1.1 传统检测的缺陷(非CNN)…

1016. 部分A+B (15)

1016. 部分AB (15) 正整数A的“DA&#xff08;为1位整数&#xff09;部分”定义为由A中所有DA组成的新整数PA。例如&#xff1a;给定A 3862767&#xff0c;DA 6&#xff0c;则A的“6部分”PA是66&#xff0c;因为A中有2个6。 现给定A、DA、B、DB&#xff0c;请编写程序计算PA…

【完美解决】RuntimeError: one of the variables needed for gradient computation has been modified by an inp

正文在后面&#xff0c;往下拉即可~~~~~~~~~~~~ 欢迎各位深度学习的小伙伴订阅的我的专栏 Pytorch深度学习理论篇实战篇(2023版)专栏地址&#xff1a; &#x1f49b;Pytorch深度学习理论篇(2023版)https://blog.csdn.net/qq_39237205/category_12077968.html &#x1f49a;Pyt…

python正则表达式入门_Python中的正则表达式教程

本文http://www.cnblogs.com/huxi/archive/2010/07/04/1771073.html 正则表达式经常被用到&#xff0c;而自己总是记不全&#xff0c;转载一份完整的以备不时之需。 1. 正则表达式基础 1.1. 简单介绍 正则表达式并不是Python的一部分。正则表达式是用于处理字符串的强大工具&am…

_0_web_基础

创&#xff1a;18_3_2017修&#xff1a;20_3_2017 什么是前端&#xff1f;  --在浏览器中展示内容以及处理请求 什么是浏览器&#xff1f;   --一款能将网页内容展现给用户查看&#xff0c;并且让用户与网页交互的软件 什么是内核&#xff1f;   --渲染引擎&#xff0c;规…

解决ImportError: cannot import name ‘NoReturn‘报错

1、问题描述&#xff1a; 复现论文时&#xff0c;报错&#xff1a;ImportError: cannot import name ‘NoReturn‘ 尝试 pip install 安装 发现并没有这么简单 2、导致问题的原因 Python版本&#xff08;3.6.1&#xff09;与pip版本&#xff08;21.2.3&#xff09;不匹配。…

码农,你的35岁?

码农的35岁 最近经常听到关于这个话题的讨论 从深圳没有房到深圳4套房的同事 很突然 大家意识到自己在慢慢变老 好了 先放个图上来 当你老了的时候 更多的人敢对你提意见了 包括HR,包括老板&#xff0c;包括同事 然而 在年轻的时候&#xff0c;老板叫我们往东&#xff0…