PYTHON-模拟练习题目集合

🌈write in front🌈
🧸大家好,我是Aileen🧸.希望你看完之后,能对你有所帮助,不足请指正!共同学习交流.
🆔本文由Aileen_0v0🧸 原创 CSDN首发🐒 如需转载还请通知⚠️
📝个人主页:Aileen_0v0🧸---CSDN博客
🎁欢迎各位→点赞👍 + 收藏⭐️ + 留言📝​
📣系列专栏:Aileen_0v0🧸的PYTHON学习系列专栏------CSDN博客
🗼我的格言:"没有罗马,那就自己创造罗马~"

1. Which of the following expression is Illegal?

O A.['12.56'] * 7
O B. int(7.4)+7.4
O C.['a','b','c']-['a']
O D.str(1.32)*5

考查:列表,整数,字符串的运算规则


在Python中,列表的加法运算是将两个列表拼接成一个新的列表,例如:

python 复制代码
a = [1, 2, 3]
b = [4, 5, 6]
c = a + b # [1, 2, 3, 4, 5, 6]

列表的乘法运算是重复一个列表多次得到一个新的列表,例如:

python 复制代码
a = [1, 2, 3]
b = a * 3 # [1, 2, 3, 1, 2, 3, 1, 2, 3]

列表不存在减法和除法运算。->选c
2.Function defining

Please define a function which can find out the all multiples of 3 (3的倍数) from 0 to nand return the sum of those mutiples.

Header of the function:

在这里描述函数接口。

例如:def acc_three(n):
n is larger than 3 and smaller than 1000

python 复制代码
def acc_three(n):
    sum = 0
    for i in range (3,n+1):
        if i % 3 == 0:
            sum += i
    return sum

#👇为后台系统调用检查结果
print(acc_three(1000))->166833

考查函数相关的知识点 ,---> http://t.csdn.cn/TpC92
3.Using Function Recursion(函数递归) to Find the Sum of 1-100

python 复制代码
def f(n):
    if n == 1: #递归结束条件
        return 1
    else:
        return n+f(n-1) #递归公式

print(f(100))#5050

考查函数递归知识点,-->http://t.csdn.cn/6uEc5
4.Please read through the block carefully and finish the following tasks:Q1. output the average Python score of three students.Q2. Define a List to store the First name of all students.
Remember to copy this code to your answer. All you need to do is to write your
code under each condition below.

python 复制代码
student_dict = {
    "Kendrick Ray": {
        "Math": 60,
        "English": 45,
        "Python": 60
    },
    "Jhon Rick":{
          "Math": 90,
        "English": 95,
        "Python": 70
    },
    "Stephen Curry":{
          "Math": 80,
        "English": 90,
        "Python": 50
    }
}
sign = input()

if sign == "avg":
#
    py_sum = 0
    for stu in student_dict:
        py_sum = py_sum + student_dict[stu]["Python"]
    print(py_sum / 3)
#

elif sign == "name":
#
    name_list =[]    #创建一个空列表接收name
    for stu in student_dict:    #遍历字典里面的字典
        stu_list = stu.split(" ")    
#使用split内置函数切割每个小字典的名字,并保存在新的列表stu_list中

        name_list.append(stu_list[0])    
#将新列表对应的name取出来储存在一个刚刚创建的空列表里
    print(name_list)
#
python 复制代码
# Output prediction
if 0:
    print("1")
elif 1-1.0:
    print("2")
else:
    print("3")

结果:3

python 复制代码
z = -87.7e100
print(type(z))
#结果:float
python 复制代码
for x in range(28,31,3):
    print(x)
# 28
python 复制代码
fruits = ["apple","banana","cherry"]
for x in  fruits:
    for y in  x:
        if x == "banana":
            break
        print(y)

#a
#p
#p
#l
#e
#c
#h
#e
#r
#r
#y

上面两个for循环,x是取到列表里面的元素,y是取得元素的每个字母,虽然它break跳出了离他最近的内循环,但由于print的是y,所以能够取到 apple 和 cherry.

python 复制代码
dict1 ={
"brand": "Ford",
"model": "Mustang",
"year":  1964,
"price": 20000
}
print(dict1["model"][4])
print(len(dict1))
#a
#4

🌈今天的练习就分享到这里啦~🌈

🌈喜欢就一键三连支持一下吧♥~🌈

🌈谢谢家人们!🌈

相关推荐
一道微光1 分钟前
Mac的M2芯片运行lightgbm报错,其他python包可用,x86_x64架构运行
开发语言·python·macos
矛取矛求5 分钟前
QT的前景与互联网岗位发展
开发语言·qt
Leventure_轩先生5 分钟前
[WASAPI]从Qt MultipleMedia来看WASAPI
开发语言·qt
向宇it19 分钟前
【从零开始入门unity游戏开发之——unity篇01】unity6基础入门开篇——游戏引擎是什么、主流的游戏引擎、为什么选择Unity
开发语言·unity·c#·游戏引擎
m0_7482567827 分钟前
WebGIS实战开源项目:智慧机场三维可视化(学习笔记)
笔记·学习·开源
四口鲸鱼爱吃盐29 分钟前
Pytorch | 利用AI-FGTM针对CIFAR10上的ResNet分类器进行对抗攻击
人工智能·pytorch·python
是娜个二叉树!36 分钟前
图像处理基础 | 格式转换.rgb转.jpg 灰度图 python
开发语言·python
互联网杂货铺39 分钟前
Postman接口测试:全局变量/接口关联/加密/解密
自动化测试·软件测试·python·测试工具·职场和发展·测试用例·postman
Schwertlilien40 分钟前
图像处理-Ch5-图像复原与重建
c语言·开发语言·机器学习
liuyunshengsir43 分钟前
Squid代理服务器的安装使用
开发语言·php