IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Python知识库 -> 【GitHub】 Python编程基础练习100题学习记录第十期(91~93) -> 正文阅读

[Python知识库]【GitHub】 Python编程基础练习100题学习记录第十期(91~93)

1.此为GitHub项目的学习记录,记录着我的思考,代码基本都有注释。
2.可以作为Python初学者巩固基础的绝佳练习,原题有些不妥的地方我也做了一些修正。
3.建议大家进行Python编程时使用英语。
4.6~17题为level1难度,18-22题为level3难度,其余都为level1难度。
项目名称:
100+ Python challenging programming exercises for Python 3

#!usr/bin/env Python3.9
# -*- coding:UTF-8 -*-


"""
Please write a program which accepts a string from console and print the characters that have even indexes.

Example: If the following string is given as input to the program:

H1e2l3l4o5w6o7r8l9d

Then, the output of the program should be:
Helloworld
"""

'''Hints: Use list[::2] to iterate a list by step 2.'''


temp = input('Please input:')
l1 = temp[::2]   # 列表切片操作,指定步长为2,提取元素
print(l1)

#!usr/bin/env Python3.9
# -*- coding:UTF-8 -*-


"""
Please write a program which prints all permutations of [1,2,3]
"""

'''Hints: Use itertools.permutations() to get permutations of list.'''


from itertools import permutations
# permutations(iterable, r=None) 函数用来在 iterable 中取出 r 个元素进行排列组合,各个排列组合中的元素有先后顺序区别
# 当 r = None 时,就是对 iterable 中的所有元素进行排列。

l1 = [1, 2, 3]
l2 = list(permutations(l1))
print(l2)
#!usr/bin/env Python3.9
# -*- coding:UTF-8 -*-


"""
Write a program to solve a classic ancient Chinese puzzle:
We count 35 heads and 94 legs among the chickens and rabbits in a farm.
How many rabbits and how many chickens do we have?
"""

'''Hint: Use for loop to iterate all possible solutions.'''

# 我的代码
heads = 35
legs = 94
for i in range(heads + 1):  # for循环匹配答案
    for j in range(heads + 1):
        if 2 * i + 4 * j == legs:  # 正确答案判定条件,鸡和兔的总腿数加起来为94只
            print("There are %d chickens and %d rabbits" % (i, j))  # 字符串匹配


# 源代码,用到了递归思想
"""def solve(num_heads, num_legs):
    ns = 'No solutions!'
    for i in range(num_heads + 1):
        j = num_heads - i
        if 2 * i + 4 * j == num_legs:
            return i, j
    return ns, ns


num_heads = 35
num_legs = 94
solutions = solve(num_heads, num_legs)
print(solutions)"""

好了,这就是Python编程基础练习100题学习记录全十期了,希望大家能够有所收获呀,附上所有链接:
【GitHub】 Python编程基础练习100题学习记录第一期(1~10)
【GitHub】 Python编程基础练习100题学习记录第二期(11~20)
【GitHub】 Python编程基础练习100题学习记录第三期(21~30)
【GitHub】 Python编程基础练习100题学习记录第四期(31~40)
【GitHub】 Python编程基础练习100题学习记录第五期(41~50)
【GitHub】 Python编程基础练习100题学习记录第六期(51~60)
【GitHub】 Python编程基础练习100题学习记录第七期(61~70)
【GitHub】 Python编程基础练习100题学习记录第八期(71~80)
【GitHub】 Python编程基础练习100题学习记录第九期(81~90)
【GitHub】 Python编程基础练习100题学习记录第十期(91~93)

再附上Python常用标准库供大家学习使用:
Python一些常用标准库解释文章集合索引(方便翻看)

“学海无涯苦作舟”

  Python知识库 最新文章
Python中String模块
【Python】 14-CVS文件操作
python的panda库读写文件
使用Nordic的nrf52840实现蓝牙DFU过程
【Python学习记录】numpy数组用法整理
Python学习笔记
python字符串和列表
python如何从txt文件中解析出有效的数据
Python编程从入门到实践自学/3.1-3.2
python变量
上一篇文章      下一篇文章      查看所有文章
加:2021-12-01 17:39:41  更:2021-12-01 17:40:30 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/16 2:41:58-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码