Python custom modify the __add__ method All In One

2022/8/22 1:25:21

本文主要是介绍Python custom modify the __add__ method All In One,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

Python custom modify the add method All In One

Python 改写 __add__ 类方法

"""



# class Juice:
#     def __init__(self, name, capacity):
#         self.name = name
#         self.capacity = capacity

#     def __str__(self):
#         return (self.name + ' ('+str(self.capacity)+'L)')
#     # 改写 add
#     def __add__(self, other):
#         names = Juice(self.name) + '&' + Juice(other.name)
#         capacity = ' (' + str(Juice(self.capacity + Juice(other.capacity)) + 'L)'
#         return Juice(names + capacity)
#         # return f"{self.name}&{other.name}({self.capacity + other.capacity}L)"

# class Juice:
#     def __init__(self, name, capacity):
#         self.name = name
#         self.capacity = capacity

#     def __str__(self):
#         return (self.name + ' ('+str(self.capacity)+'L)')
#     # 改写 add
#     def __add__(self, other):
#         return (Juice(self.name + '&' + other.name + ' (' + str(self.capacity + other.capacity) + 'L)'))
#         # return f"{self.name}&{other.name}({self.capacity + other.capacity}L)"



https://www.sololearn.com/learning/eom-project/1073/357
https://github.com/xgqfrms/Python/blob/gh-pages/python3.x/juice-maker.py

"""


??? Python def function with __init__

MMP 纯属误导呀! --init--

def concatenate(*args):
    #  *args
    --init--
      s = ""
      l = len(list(args))
      for arg in args:
          s += (arg + '-')
      

print(concatenate("I", "love", "Python", "!"))

solution

def concatenate(*args):
    #  *args
    s = ""
    for arg in args:
        s += (arg + '-')
    
    l = len(s)
    return s[0:l - 1]
    # return s.slice(0, l - 1)

print(concatenate("I", "love", "Python", "!"))

# https://www.sololearn.com/learning/eom-project/1073/358

refs

https://www.codingem.com/python-add-method/

https://stackoverflow.com/questions/46885618/using-add-operator-with-multiple-arguments-in-python

https://stackoverflow.com/questions/40770632/typeerror-unsupported-operand-types-for



©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载



这篇关于Python custom modify the __add__ method All In One的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程