我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Python基础练习100题 ( 61

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Python基础练习100题 ( 61

昨天和大家分享了51-60题,今天继续来刷61~70题

Question 61:

The Fibonacci Sequence is computed based on the following formula:
f(n)=0 if n=0
f(n)=1 if n=1
f(n)=f(n-1)+f(n-2) if n>1
Please write a program to compute the value of f(n) with a given n input by console.

*Example:
If the following n is given as input to the program:*

7
Then, the output of the program should be:
13

解法一

def f(n):
    if n < 2:
        return n
    return f(n-1) + f(n-2)

n = int(input())
print(f(n))

Question 62:

The Fibonacci Sequence is computed based on the following formula:
f(n)=0 if n=0
f(n)=1 if n=1
f(n)=f(n-1)+f(n-2) if n>1
Please write a program to compute the value of f(n) with a given n input by console.

*Example:
If the following n is given as input to the program:*

7
Then, the output of the program should be:
0,1,1,2,3,5,8,13

解法一

def f(n):
    if n < 2:
        fibo[n] = n
        return fibo[n]
    fibo[n] = f(n-1) + f(n-2)
    return fibo[n]

n = int(input())
fibo = [0]*(n+1)  # initialize a list of size (n+1)
f(n)            
fibo = [str(i) for i in fibo]   
ans = ",".join(fibo)    
print(ans)

Question 63:

Please write a program using generator to print the even numbers between 0 and n in comma separated form while n is input by console.

*Example:
If the following n is given as input to the program:*

10
Then, the output of the program should be:
0,2,4,6,8,10
In case of input data being supplied to the question, it should be assumed to be a console input.

解法一

def get_evennumbers(x):
    for x in range(0,x+1):
        if x%2==0:
            yield x

input_number=int(input())
values = []
for i in get_evennumbers(input_number):
    values.append(str(i)) 
print(",".join(values))

Question 64:

Please write a program using generator to print the numbers which can be divisible by 5 and 7 between 0 and n in comma separated form while n is input by console.

*Example:
If the following n is given as input to the program:*

100
Then, the output of the program should be:
0,35,70

解法一

def devision_seven_five(x):
    for x in range(0,x+1):
        if x%35==0:
            yield x

input_number=int(input())
values = []
resp = [str(i) for i in devision_seven_five(input_number)]
print(",".join(resp))

Question 65:

Please write assert statements to verify that every number in the list [2,4,6,8] is even.

解法一

data = [2,4,5,6]
for i in data:
    assert i%2 == 0, "{} is not an even number".format(i)

Question 66:

Please write a program which accepts basic mathematic expression from console and print the evaluation result.

*Example:
If the following n is given as input to the program:*

35 + 3
Then, the output of the program should be:
38

解法一

expression = input()
ans = eval(expression)
print(ans)

Question 67:

Please write a binary search function which searches an item in a sorted list. The function should return the index of element to be searched in the list.

解法一

from bisect import bisect_right 

def BinarySearch(a, x): 
    i = bisect_right(a, x) 
    if i != len(a)+1 and a[i-1] == x: 
        return (i-1) 
    else: 
        return -1

lst = [1,2,4,5,6,7,8] 
x = int(input()) 
res = BinarySearch(lst, x) 
if res == -1: 
    print(x, "is absent") 
else: 
    print("Last occurrence of", x, "is present at", res)

Question 68:

Please generate a random float where the value is between 10 and 100 using Python module.

解法一

import random
rand_num = random.uniform(10,100)
print(rand_num)
    

解法二

import random
print(random.random()*100)

Question 69:

Please generate a random float where the value is between 5 and 95 using Python module.

解法一

  
import  random 
print(random.random()*100-5)

解法二

import  random  rand_num  =  random.uniform(5,95)  
print(rand_num) 

Question 70:

Please write a program to output a random even number between 0 and 10 inclusive using random module and list comprehension.

解法一

import random
resp = [i for i in range(2,11,2)]
print(random.choice(resp))

解法二

import random
even_numbers = [x for x in range(0,11) if x%2==0]
print(random.choice(even_numbers))

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

  • Python 61-70题

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

  • raw_input()在Python3中是input()
  • print需要加括号
  • fstring可以换成.format(),或者%s,%d

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

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Python基础练习100题 ( 61

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Python基础练习100题 ( 61

昨天和大家分享了51-60题,今天继续来刷61~70题Question 61:The Fibonacci Sequence is computed based on the following formula:f(n)=0 if n=0f(
2023-01-31

Python基础练习100题 ( 31

昨天和大家分享了21-30题,今天继续来刷31~40题Question 31:Define a function which can print a dictionary where the keys are numbers between
2023-01-31

Python基础练习100题 ( 41

大家好,我又回来了,昨天和大家分享了31-40题,今天继续来看41~50题Question 41:Write a program which can map() to make a list whose elements are squar
2023-01-31

Python基础练习100题 ( 71

昨天和大家分享了61-70题,今天继续来刷71~80题Question 71:Please write a program to output a random number, which is divisible by 5 and 7,
2023-01-31

Python基础练习100题 ( 51

昨天和大家分享了41-50题,今天继续来刷51~60题Question 51:Write a function to compute 5/0 and use try/except to catch the exceptions.解法一def
2023-01-31

Python基础练习100题 ( 21

昨天和大家分享了前10道题,今天继续来刷21~30Question 21:A robot moves in a plane starting from the original point (0,0). The robot can move
2023-01-31

Python基础练习100题 ( 81

昨天和大家分享了71-80题,今天继续来刷81~90题Question 81:By using list comprehension, please write a program to print the list after remov
2023-01-31

Python基础练习100题 ( 91

昨天和大家分享了81-90题,今天继续来刷最后的91-100题Question 91:Please write a program which accepts a string from console and print it in re
2023-01-31

Python基础练习100题 ( 1~

大家好,好久不见,我最近在Github上发现了一个好东西,是关于夯实Python基础的100道题,原作者是在Python2的时候创建的,闲来无事,非常适合像我一样的小白来练习对于每一道题,解法都不唯一,我在这里仅仅是抛砖引玉,希望可以集合大
2023-01-31

Python基础练习100题 ( 11

上一期和大家分享了前10道题,今天继续来刷11~20Question 11:Write a program which accepts a sequence of comma separated 4 digit binary numbers
2023-01-31

【Python基础】练习题

# 练习题'''1、简述编译型语言和解释性语言的区别,并且列出你知道哪些语言为编译型那些为解释型 编译型语言:每次编写完成后都要将其编译成二进制(0和1)文件 优点:运行速度快
2023-01-31

python基础1习题练习

python基础1习题练习:#encoding:utf-8#1.实现用户输入用户名和密码,当用户名为 seven 且 密码为 123 时,显示登陆成功,否则登陆失败!name=input('name>>: ').strip()passwor
2023-01-31

Python--基础练习

1. 在Linux电脑上安装python,ipython,pycharm专业版本软件;   2. 在Windows电脑上安装python3版本,并配置环境变量,确保Dos环境下运行脚本;   3. Linux下有多少种运行python的不同
2023-01-31

Python 基础练习 PAT水题(四)

#学习笔记#用以练习python基础#原题链接:https://www.patest.cn/contests/pat-b-practise/1050 本题要求将给定的N个正整数按非递增的顺序,填入“螺旋矩阵”。所谓“螺旋矩阵”,是指从左上角
2023-01-31

基础Python练习题有哪些

本篇内容主要讲解“基础Python练习题有哪些”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“基础Python练习题有哪些”吧!1. 输入一个百分制成绩,要求输出成绩等级A、B、C、D、E,其中9
2023-06-25

python基础知识练习题(二)

1、 有两个列表  l1 = [11, 22, 33]  l2 = [22, 33, 44]   a.获取内容相同的元素列表li = []l1 = [11, 22, 33]l2 = [22, 33, 44]for v1 in l1:
2023-01-31

python入门-简单基础题练习

'''1.简述变量名称规范    (1)变量必须由字母,数字,下划线组成。    (2)变量不能是数字开头,更不可以是纯数字组成。    (3)变量不能是python的关键词。    (4)变量名称要有意义,不能随便瞎起。    (5)变量
2023-01-31

Python基础练习题目有哪些

这篇文章主要讲解了“Python基础练习题目有哪些”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Python基础练习题目有哪些”吧!1 、题目:有5个数字:1、2、3、4,5能组成多少个互不
2023-06-02

100道python经典练习题

链接:https://pan.baidu.com/s/1K0iuZKJukLoGQ8OBy7xq1Q提取码:2s6q链接长期有效,如有疑问,欢迎评论区交流。
2023-01-31

python基础练习_1.1

练习_1.1练习题目:    1 打印九九乘法表    2 打印下方菱形    3 打印100以内的斐波那契数列    4 求斐波那契数列第101项    5 求10万内的所有质数       *         ***       ***
2023-01-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录