博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
What is python .. (“dot dot”) notation syntax?
阅读量:5039 次
发布时间:2019-06-12

本文共 498 字,大约阅读时间需要 1 分钟。

What you have is a float literal without the trailing zero, which you then access the __truediv__method of. It's not an operator in itself; the first dot is part of the float value, and the second is the dot operator to access the objects properties and methods.

You can reach the same point by doing the following.

>>> f = 1.>>> f1.0>>> f.__floordiv__

Another example

>>> 1..__add__(2.)3.0

Here we add 1.0 to 2.0, which obviously yields 3.0.

转载于:https://www.cnblogs.com/dancesir/p/8241001.html

你可能感兴趣的文章
【4.1】Python中的序列分类
查看>>
ubuntu 移动文件
查看>>
Easy Mock
查看>>
看看 Delphi XE2 为 VCL 提供的 14 种样式
查看>>
Python内置函数(29)——help
查看>>
机器学习系列-tensorflow-01-急切执行API
查看>>
SqlServer 遍历修改字段长度
查看>>
Eclipse快捷键:同时显示两个一模一样的代码窗口
查看>>
《架构之美》阅读笔记05
查看>>
《大道至简》读后感——论沟通的重要性
查看>>
JDBC基础篇(MYSQL)——使用statement执行DQL语句(select)
查看>>
关于React中props与state的一知半解
查看>>
java中Hashtable和HashMap的区别(转)
查看>>
关闭数据库
查看>>
webStrom智能提示忽略首字母大小写问题
查看>>
层叠加的五条叠加法则(一)
查看>>
设计模式六大原则(5):迪米特法则
查看>>
对Feature的操作插入添加删除
查看>>
javascript String
查看>>
ecshop 系统信息在哪个页面
查看>>