Post on: 2024-9-22Last edited: 2024-10-9Words 00 min

type
status
date
slug
summary
tags
category
icon
password
标准数据类型有数字、字符串、列表、元组、字典五大类

字符串

python允许多个变量赋值

python字符串切片

python中in的用法

islower()/isupper()/istitle()

center (len,str)

join(str)

find(str,begin,end)、index(str,begin,end)

repr(x)

Python 元组(tuple)

元组是另一个数据类型,类似于 List(列表), 但不能修改
可使用len、max、min、sum、tuple、index、count索引和切片

创建元组

解包

python字典

键值对 key:value

添加、更新字典元素、删除字典元素

遍历字典

清空字典

字典推导式

列表

python中列表很常见,这里不做多余赘述

bytes 与 str 的区别

str 类型表示文本字符串,每个字符是一个 Unicode 字符。
bytes 类型表示二进制数据,每个元素是一个字节(0-255 的整数)。

文件处理

file.tell()

返回文件当前位置。

file.seek(offset, [base])

设置文件当前位置
file.read()
从文件中读取指令的字节数,如果未给定或为负则读取所有

file.write(str)

将字符串写入文件,返回的是写入的字符长度。

异常处理的简单使用

 

学习一下frida

🗒️学习一下frida

初识frida


c++学习

🗒️c++学习

c++学习