[转载] python类运算符的重载

参考链接: Python中的运算符重载

alist = input().split()

 

blist = input().split()

 

n = float(input())

 

 

class Vector:

    def __init__(self, x=0, y=0, z=0):

        # 请在此编写你的代码(可删除pass语句)

        self.X = x

        self.Y = y

        self.Z = z

 

        # 代码结束

 

    def __add__(self, other):

 

        return Vector(self.X + other.X, self.Y + other.Y, self.Z + other.Z)

 

 

        # 代码结束

 

    def __sub__(self, other):

 

        return Vector(self.X - other.X, self.Y - other.Y, self.Z -other.Z)

 

 

 

 

        # 代码结束

 

    def __mul__(self, other):

 

        return Vector(self.X * other, self.Y * other, self.Z * other)

        # 请在此编写你的代码(可删除pass语句)

 

 

 

        # 代码结束

 

    def __truediv__(self, other):

 

        return Vector(self.X / other, self.Y / other, self.Z / other)

        # 请在此编写你的代码(可删除pass语句)

 

 

 

 

 

        # 代码结束

 

    def __str__(self):

        # 请在此编写你的代码(可删除pass语句)

        return '(%.1f,%.1f,%.1f)' % (self.X, self.Y, self.Z)

 

 

 

 

 

 

 

 

a = Vector(float(alist[0]), float(alist[1]), float(alist[2]))

 

b = Vector(float(blist[0]), float(blist[1]), float(blist[2]))

 

print(a + b, a - b, a * n, a / n)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540530.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

r语言 运算符_R语言运算符

r语言 运算符R语言中的运算符 (Operators in R Language) Generally speaking, an operator is a symbol that gives proper commands to the compiler regarding a specific action to be executed. The operators are used for carrying out the mathematical or logical cal…

[转载] Python基础之类型转换与算术运算符

参考链接: Python中的运算符函数| 1 一、注释 1.注释:对程序进行标注和说明,增加程序的可读性。程序运行的时候会自动忽略注释。 2.单行注释:使用#的形式。但是#的形式只能注释一行,如果有多行,就不方便…

java awt 按钮响应_Java AWT按钮

java awt 按钮响应The Button class is used to implement a GUI push button. It has a label and generates an event, whenever it is clicked. As mentioned in previous sections, it extends the Component class and implements the Accessible interface. Button类用于…

解决“由于应用程序的配置不正确,应用程序未能启动,重新安装应用程序可能会纠正这个问题”...

在VS2005下用C写的程序,在一台未安装VS2005的系统上, 用命令行方式运行,提示: “系统无法执行指定的程序” 直接双击运行,提示: “由于应用程序的配置不正确,应用程序未能启动,重新安…

qgis在地图上画导航线_在Laravel中的航线

qgis在地图上画导航线For further process we need to know something about it, 为了进一步处理,我们需要了解一些有关它的信息, The route is a core part in Laravel because it maps the controller for sending a request which is automatically …

Logistic回归和SVM的异同

这个问题在最近面试的时候被问了几次,让谈一下Logistic回归(以下简称LR)和SVM的异同。由于之前没有对比分析过,而且不知道从哪个角度去分析,一时语塞,只能不知为不知。 现在对这二者做一个对比分析&#xf…

[转载] python学习笔记2--操作符,数据类型和内置功能

参考链接: Python中的Inplace运算符| 1(iadd(),isub(),iconcat()…) 什么是操作符? 简单的回答可以使用表达式4 5等于9,在这里4和5被称为操作数,被称为操符。 Python语言支持操作者有以下几种类型。 算…

scala bitset_Scala中的BitSet

scala bitsetScala BitSet (Scala BitSet) Set is a collection of unique elements. 集合是唯一元素的集合。 Bitset is a set of positive integers represented as a 64-bit word. 位集是一组表示为64位字的正整数。 Syntax: 句法: var bitset : Bitset Bits…

构建安全网络 比格云全系云产品30天内5折购

一年之计在于春,每年的三、四月,都是个人创业最佳的起步阶段,也是企业采购最火热的时期。为了降低用户的上云成本,让大家能无门槛享受到优质高性能的云服务,比格云从3月16日起,将上线“充值30天内&#xff…

python中 numpy_Python中的Numpy

python中 numpyPython中的Numpy是什么? (What is Numpy in Python?) Numpy is an array processing package which provides high-performance multidimensional array object and utilities to work with arrays. It is a basic package for scientific computati…

[转载] python之路《第二篇》Python基本数据类型

参考链接: Python中的Inplace运算符| 1(iadd(),isub(),iconcat()…) 运算符 1、算数运算: 2、比较运算: 3、赋值运算: 4、逻辑运算: 5、成员运算: 6、三元运算 三元运算&…

数据结构 基础知识

一。逻辑结构: 是指数据对象中数据 素之间的相互关系。 其实这也是我 今后最需要关注的问题 逻辑结构分为以 四种1. 集合结构 2.线性结构 3.数形结构 4,图形结构 二。物理结构: 1,顺序存储结,2 2. 链式存储结构 一,时间复杂…

ruby 变量类中范围_Ruby中的类

ruby 变量类中范围Ruby类 (Ruby Classes) In the actual world, we have many objects which belong to the same category. For instance, I am working on my laptop and this laptop is one of those laptops which exist around the globe. So, this laptop is an object o…

以云计算的名义 驻云科技牵手阿里云

本文讲的是以云计算的名义 驻云科技牵手阿里云一次三个公司的牵手 可能会改变无数企业的命运 2017年4月17日,对于很多人来说可能只是个平常的工作日,但是对于国内无数的企业来说却可能是个会改变企业命运的日。驻云科技联合国内云服务提供商阿里云及国外…

[转载] python学习笔记

参考链接: Python | a b并不总是a a b 官网http://www.python.org/ 官网library http://docs.python.org/library/ PyPI https://pypi.python.org/pypi 中文手册,适合快速入门 http://download.csdn.net/detail/xiarendeniao/4236870 py…

标志寄存器_访问标志寄存器,并与寄存器B |交换标志寄存器F的内容 8085微处理器...

标志寄存器Problem statement: 问题陈述: Write an assembly language program in 8085 microprocessor to access Flag register and exchange the content of flag register F with register B. 在8085微处理器中编写汇编语言程序以访问标志寄存器,并…

浏览器端已支持 ES6 规范(包括 export import)

当然,是几个比较优秀的浏览器,既然是优秀的浏览器,大家肯定知道是那几款啦,我就不列举了,我用的是 chrome。 对 script 声明 type 为 module 后就可以享受 es6 规范所带来的模块快感了。 基础语法既然是全支持&#xf…

[转载] Python学习:Python成员运算符和身份运算符

参考链接: Python中和is运算符之间的区别 Python成员运算符 除了以上的一些运算符之外,Python还支持成员运算符,测试实例中包含了一系列的成员,包括字符串,列表或元组。 运算符 描述 实例 in 如果在指定的序列中找…

量词逻辑量词里面的v表示?_代理知识表示中的量词简介(基于人工智能)

量词逻辑量词里面的v表示?As we know that in an AI-based agent, the knowledge is represented through two types of logic: The propositional logic and the predicate logic. In the propositional logic, we have declarative sentences, and in the predica…

[转载] Python 机器学习经典实例

参考链接: Python中的逻辑门 内容介绍 在如今这个处处以数据驱动的世界中,机器学习正变得越来越大众化。它已经被广泛地应用于不同领域,如搜索引擎、机器人、无人驾驶汽车等。本书首先通过实用的案例介绍机器学习的基础知识,然后…