Python测试开发预习课6/18

2024-02-23 07:48
文章标签 python 开发 测试 18 预习

本文主要是介绍Python测试开发预习课6/18,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

注意:
切片是可以越界的
遍历不要改原字符串

1、abcxxx,请统计一下x有多少个?用函数实现

知识点

>>> s="abcaxxx"
>>> s.count("x")
3

在这里插入图片描述
count函数的算法
算法:
1 定义一个函数,参数传递一个字符串
2 声明一个变量letter_count存储某个字符出现的个数
3 遍历字符串,逐一拿出来,判断是否是你想要统计的那个
4 如果是,则letter_count+1
5 如果不是,则什么都不做
6 把函数中的统计结果变量返回回来 return letter_count

def count(s,target_letter):letter_count = 0for i in s:if i == target_letter:letter_count+=1return letter_countprint(count("abcxxx","x"))

在这里插入图片描述

2、abcxabcyabc,请统计一下abc有多少个?用函数实现

算法:
例如:0位置的s[0:3]==“xxx” 当前i是0,
满足的条件下1和2不需要做if判断了,直接跳过去
把当前的i+1,i+2这两个位置,放入到filter_position
代码:

def count(s,target_letters):string_count = 0length=len(target_letters)filter_position = []for i in range(len(s)):if i in filter_position:continueif s[i:i+length] == target_letters:string_count+=1for j in range(1,length):filter_position.append(i+j)return string_countprint(count("xxxxabcxxxx","xxx"))

3、列表的增删改查

>>> arr=[]
>>> type(arr)
<class 'list'>
>>> arr.append(1)
>>> arr.append("1")
>>> arr.append([])
>>> arr.append((1,2))
>>> arr.append(1.24)
>>> arr
[1, '1', [], (1, 2), 1.24]
>>> len(arr)
5
>>> arr.insert(0,"xyz")
>>> arr[0]
'xyz'
>>> arr[2]#列表是一个序列,基于坐标查看
'1'
>>> for i in range(10):
...     arr.append(i)
...
>>> arr
['xyz', 1, '1', [], (1, 2), 1.24, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> del arr[0]
>>> del arr[0]
>>> arr
['1', [], (1, 2), 1.24, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> del arr[2:5]
>>> arr
['1', [], 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> a[0]="aaa"
Traceback (most recent call last):File "<stdin>", line 1, in <module>
NameError: name 'a' is not defined
>>> arr[0]="xxx"
>>> arr
['xxx', [], 1, 2, 3, 4, 5, 6, 7, 8, 9]
>>> arr[0:4]="111"
>>> arr
['1', '1', '1', 3, 4, 5, 6, 7, 8, 9]
>>> for i in arr:
...     print(i)
...
1
1
1
3
4
5
6
7
8
9
>>> for i in range(len(arr)):
...     print(arr[i])
...
1
1
1
3
4
5
6
7
8
9
>>> a=[1,2,3]
>>> arr=["a","b"]
>>> arr.extend(a)
>>> arr
['a', 'b', 1, 2, 3]

在这里插入图片描述
在这里插入图片描述

4、元组的增删改查–元组:它所有子元素的地址,是不能改变的

>>> a=()
>>> type(a)
<class 'tuple'>
>>> a=(1)
>>> type(a)
<class 'int'>
>>> a=(1,)
>>> type(a)
<class 'tuple'>
>>> a=(1,"a",[],{})
>>> a[0]="x"
Traceback (most recent call last):File "<stdin>", line 1, in <module>
TypeError: 'tuple' object does not support item assignment
>>> del a[0]
Traceback (most recent call last):File "<stdin>", line 1, in <module>
TypeError: 'tuple' object doesn't support item deletion
>>> a[0]
1
>>> a[1]
'a'
>>> a[2]
[]
>>> a[3]
{}
>>> a[4]
Traceback (most recent call last):File "<stdin>", line 1, in <module>
IndexError: tuple index out of range
>>>
>>>
>>>
>>> a
(1, 'a', [], {})
>>> a[2]
[]
>>> a[2].append(100)
>>> a[2].append(233)
>>> a
(1, 'a', [100, 233], {})
>>> a
(1, 'a', [100, 233], {})

在这里插入图片描述

5、字典的增删改查–字典的key不能重复,如果赋值重复了,会把value替换掉

>>> d={}
>>> type(d)
<class 'dict'>
>>> d["1"]=100
>>> d
{'1': 100}
>>> d[[1]]=100
Traceback (most recent call last):File "<stdin>", line 1, in <module>
TypeError: unhashable type: 'list'
>>> d
{'1': 100}
>>> d[1]
Traceback (most recent call last):File "<stdin>", line 1, in <module>
KeyError: 1
>>> d["1"]
100
>>> d[10000]
Traceback (most recent call last):File "<stdin>", line 1, in <module>
KeyError: 10000
>>> d["2"]=9000
>>> d["2"]=9000
>>> d
{'1': 100, '2': 9000}
>>> del d["2"]
>>> d
{'1': 100}
>>>
>>>
>>>
>>>
>>>
>>> d={1:2,3:4,5:6}
>>> d
{1: 2, 3: 4, 5: 6}
>>> d.keys()
dict_keys([1, 3, 5])
>>> list(d.keys())
[1, 3, 5]
>>> for i in d.keys():
...     print(i)
...
1
3
5
>>> for i in d.values():
...     print(i)
...
2
4
6
>>> for k,v in d.items():
...     print(k,"=",value)
...
Traceback (most recent call last):File "<stdin>", line 2, in <module>
NameError: name 'value' is not defined
>>> for k,v in d.items():
...     print(k,"=",v)
...
1 = 2
3 = 4
5 = 6
>>> d
{1: 2, 3: 4, 5: 6}
>>> d.clear()
>>> d
{}
>>> d={1:2,3:4,5:6}
>>> for i in d.keys():
...     d[i]=1190
...
>>> d
{1: 1190, 3: 1190, 5: 1190}
>>> new_d={}
>>> for i in d.keys():
...     if i%2==1:
...         continue
...         new_d[i]=d[i]
...
>>> new_d[i]
Traceback (most recent call last):File "<stdin>", line 1, in <module>
KeyError: 5
>>> new_d
{}

在这里插入图片描述

这篇关于Python测试开发预习课6/18的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/737965

相关文章

Python FastAPI+Celery+RabbitMQ实现分布式图片水印处理系统

《PythonFastAPI+Celery+RabbitMQ实现分布式图片水印处理系统》这篇文章主要为大家详细介绍了PythonFastAPI如何结合Celery以及RabbitMQ实现简单的分布式... 实现思路FastAPI 服务器Celery 任务队列RabbitMQ 作为消息代理定时任务处理完整

Python Websockets库的使用指南

《PythonWebsockets库的使用指南》pythonwebsockets库是一个用于创建WebSocket服务器和客户端的Python库,它提供了一种简单的方式来实现实时通信,支持异步和同步... 目录一、WebSocket 简介二、python 的 websockets 库安装三、完整代码示例1.

揭秘Python Socket网络编程的7种硬核用法

《揭秘PythonSocket网络编程的7种硬核用法》Socket不仅能做聊天室,还能干一大堆硬核操作,这篇文章就带大家看看Python网络编程的7种超实用玩法,感兴趣的小伙伴可以跟随小编一起... 目录1.端口扫描器:探测开放端口2.简易 HTTP 服务器:10 秒搭个网页3.局域网游戏:多人联机对战4.

使用Python实现快速搭建本地HTTP服务器

《使用Python实现快速搭建本地HTTP服务器》:本文主要介绍如何使用Python快速搭建本地HTTP服务器,轻松实现一键HTTP文件共享,同时结合二维码技术,让访问更简单,感兴趣的小伙伴可以了... 目录1. 概述2. 快速搭建 HTTP 文件共享服务2.1 核心思路2.2 代码实现2.3 代码解读3.

Python使用自带的base64库进行base64编码和解码

《Python使用自带的base64库进行base64编码和解码》在Python中,处理数据的编码和解码是数据传输和存储中非常普遍的需求,其中,Base64是一种常用的编码方案,本文我将详细介绍如何使... 目录引言使用python的base64库进行编码和解码编码函数解码函数Base64编码的应用场景注意

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

Python基于wxPython和FFmpeg开发一个视频标签工具

《Python基于wxPython和FFmpeg开发一个视频标签工具》在当今数字媒体时代,视频内容的管理和标记变得越来越重要,无论是研究人员需要对实验视频进行时间点标记,还是个人用户希望对家庭视频进行... 目录引言1. 应用概述2. 技术栈分析2.1 核心库和模块2.2 wxpython作为GUI选择的优

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.

Python+PyQt5实现多屏幕协同播放功能

《Python+PyQt5实现多屏幕协同播放功能》在现代会议展示、数字广告、展览展示等场景中,多屏幕协同播放已成为刚需,下面我们就来看看如何利用Python和PyQt5开发一套功能强大的跨屏播控系统吧... 目录一、项目概述:突破传统播放限制二、核心技术解析2.1 多屏管理机制2.2 播放引擎设计2.3 专

Python中随机休眠技术原理与应用详解

《Python中随机休眠技术原理与应用详解》在编程中,让程序暂停执行特定时间是常见需求,当需要引入不确定性时,随机休眠就成为关键技巧,下面我们就来看看Python中随机休眠技术的具体实现与应用吧... 目录引言一、实现原理与基础方法1.1 核心函数解析1.2 基础实现模板1.3 整数版实现二、典型应用场景2