设计一个三维向量类,并实现向量的加法、减法以及向量与标量的乘法和除法运算。 class Vecter3: def_init_(self,x=0,y=0,z=0): self.X=x self.Y=y self.Z=z def_add_(self,n): r=Vecter3() r.X=self.X+ ...
分类:
其他好文 时间:
2020-05-20 18:50:52
阅读次数:
42
import urllib.request,urllib.parse,json class saltAPI(): def __init__(self): self.url = 'http://10.10.2.11:8000' self.data = {'username' : 'salt-api', ...
分类:
编程语言 时间:
2020-05-20 18:47:33
阅读次数:
53
简单的自定义异常处理 class CustomizeError(BaseException): def __init__(self, msg): self.msg = msg def __str__(self): return self.msg try: raise CustomizeError(' ...
分类:
编程语言 时间:
2020-05-20 17:12:34
阅读次数:
85
双指针 思路: 一个指针负责遍历,另一个指针负责记录,遇到不同值时更新状态。 class Solution: def countAndSay(self, n: int) -> str: def getResult(para:str)->str: record = para[len(para)-1] ...
分类:
其他好文 时间:
2020-05-20 14:04:26
阅读次数:
45
写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。 思路:可以使用sum(),它可以对一个数组内部所有元素求和 # -*- coding:utf-8 -*- class Solution: def Add(self, num1, num2): # write code h ...
分类:
编程语言 时间:
2020-05-20 12:08:01
阅读次数:
61
题目描述: 提交: class Solution: def peopleIndexes(self, f: List[List[str]]) -> List[int]: res = [] dic = collections.defaultdict(list) for i in range(len(f) ...
分类:
其他好文 时间:
2020-05-19 20:40:53
阅读次数:
55
题目描述: 提交: class Solution: def arrangeWords(self, text: str) -> str: text = text.lower().split(" ") text.sort(key = lambda x:len(x)) text[0] = text[0][ ...
分类:
其他好文 时间:
2020-05-19 20:15:59
阅读次数:
62
class lazyproperty: def __init__(self,fun): self.fun=fun def __get__(self, instance, owner): print("get") print(' >',self) print(' >',instance) print( ...
分类:
编程语言 时间:
2020-05-19 14:43:25
阅读次数:
56
父类定义统一化pay接口方法, 子类必须实现这个方法 from abc import ABCMeta, abstractmethod class Payment(metaclass=ABCMeta): @abstractmethod def pay(self): pass class Alipay( ...
分类:
编程语言 时间:
2020-05-19 14:15:16
阅读次数:
185
class Net(nn.Module): def __init__(self , model): super(Net, self).__init__() #取掉model的后两层 self.resnet_layer = nn.Sequential(*list(model.children())[: ...
分类:
其他好文 时间:
2020-05-19 13:01:03
阅读次数:
69