Python
人生苦短,我学Python
花椒且喵酱
资料难找,所以记录下来
展开
-
Python hex转mif文件脚本
修改文件中指定字符串# 按间距中的绿色按钮以运行脚本。if __name__ == '__main__': f = open(r"C:\Users\t.mif", "r+") f2 = open(r"C:\Users\image.hex", "r") data = f.readlines() f = open(r"C:\Users\98782\Desktop\t.mif", "w+") for i in data: if i.find(': 00原创 2022-03-11 16:14:35 · 1421 阅读 · 0 评论 -
Python map
class map(object): """ map(func, *iterables) --> map object Make an iterator that computes the function using arguments from each of the iterables. Stops when the shortest iterable is exhausted. """ def __getattribute__(sel原创 2022-02-22 13:09:36 · 88 阅读 · 0 评论 -
Python 打家劫舍
每日一练打家劫舍你是一个专业的小偷,计划偷窃沿街的房屋。每间房内都藏有一定的现金,影响你偷窃的唯一制约因素就是相邻的房屋装有相互连通的防盗系统,如果两间相邻的房屋在同一晚上被小偷闯入,系统会自动报警。给定一个代表每个房屋存放金额的非负整数数组,计算你 不触动警报装置的情况下 ,一夜之内能够偷窃到的最高金额。示例 1:输入:[1,2,3,1]输出:4解释:偷窃 1 号房屋 (金额 = 1) ,然后偷窃 3 号房屋 (金额 = 3)。偷窃到的最高金额 = 1 + 3 = 4 。示例 2:输入原创 2022-02-21 14:29:51 · 200 阅读 · 0 评论 -
Python 多数元素
【题目】给定一个大小为 n 的数组,找到其中的多数元素。多数元素是指在数组中出现次数大于 ⌊ n/2 ⌋ 的元素。你可以假设数组是非空的,并且给定的数组总是存在多数元素。【示例 1】输入: [3,2,3]输出: 3【示例 2】输入: [2,2,1,1,1,2,2]输出: 2时间复杂度O(n),空间复杂度O(1)def majorityElement(nums): count, candi = 0, 0 for i in nums: if i == cand原创 2022-02-20 20:47:36 · 1157 阅读 · 1 评论 -
Python next(iterator, default=None)
def next(iterator, default=None): # real signature unknown; restored from __doc__ """ next(iterator[, default]) Return the next item from the iterator. If default is given and the iterator is exhausted, it is returned instead of raisin原创 2022-02-19 23:17:00 · 721 阅读 · 0 评论 -
pytorch手写数字集MNIST
版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。本文链接:https://blog.csdn.net/weixin_44613063/article/details/90815082weixin_44613063/article/details/90815082import torchimport torch.nn as nnimport torch.nn.functional as Fimport torch.optim as optim转载 2021-12-22 20:00:24 · 297 阅读 · 0 评论 -
Linux中Python 模块构建,安装,卸载
1、构建首先建立一个setup.py文件添加如下代码from distutils.core import setupsetup(name="test", py_modules=["t2", "t1"])在终端输入python3 setup.py buildpython3 setup.py sdist模块就制作完成了2、安装解压tar zxvf test-0.0.0.tar.gz安装(在解压后的文件中)sudo python3 setup.py inst原创 2021-08-13 14:26:34 · 260 阅读 · 0 评论 -
Python __new__(cls)
__ new __ 在python中新建一个对象时会自动被调用给对象分配空间如下面的代码所打印输出的class TEST(object): #构造函数的形参列表一般和成员变量有关【主要给成员变量赋值】 def __new__(cls, *args, **kwargs): print(super().__new__(cls)) return super().__new__(cls)这里我将 __ new__ 重写后又调用了父类的 __ new __那么为原创 2021-08-12 20:16:48 · 934 阅读 · 0 评论