Answers for "staticmethod python"

1

staticmethod python

class math:

    @staticmethod
    def add(x, y):
        return x + y

    @staticmethod
    def add5(num):
        return num + 5

    @staticmethod
    def add10(num):
        return num + 10

    @staticmethod
    def pi():
        return 3.14


x = math.add(10, 20)
y = math.add5(x)
z = math.add10(y)
print(x, y, z)
Posted by: Guest on October-20-2021
13

static methods in python

class Calculator:

    # create addNumbers static method
    @staticmethod
    def addNumbers(x, y):
        return x + y

print('Product:', Calculator.addNumbers(15, 110))
Posted by: Guest on June-08-2020
4

staticmethod python

import random

class Example:
  	# A static method doesn't take the self argument and
    # cannot access class members.
	@staticmethod
    def choose(l: list) -> int:
    	return random.choice(l)
    
    def __init__(self, l: list):
      self.number = self.choose(l)
Posted by: Guest on February-01-2021
2

python: @classmethod

class Float:
    def __init__(self, amount):
        self.amount = amount

    def __repr__(self):
        return f'<Float {self.amount:.3f}>'

    @classmethod
    def from_sum(cls, value_1, value_2):
        return cls(value_1 + value_2)


class Dollar(Float):
    def __init__(self, amount):
        super().__init__(amount)
        self.symbol = '€'

    def __repr__(self):
        return f'<Euro {self.symbol}{self.amount:.2f}>'


print(Dollar.from_sum(1.34653, 2.49573))
Posted by: Guest on August-10-2020
0

python classmethod

class point:
	def __init__(self, x, y):
    	self.x = x
        self.y = y
        
    @classmethod
    def zero(cls):
    	return cls(0, 0)
        
    def print(self):
    	print(f"x: {self.x}, y: {self.y}")
        
p1 = point(1, 2)
p2 = point().zero()
print(p1.print())
print(p2.print())
Posted by: Guest on December-07-2020
0

python staticmethod

# python static method in simple explanation
class cls:
    @staticmethod
    def func():
        pass

instance1 = cls()
instance2 = cls()
instance3 = cls()

print(id(cls.func), cls.func)
print(id(instance1.func), instance1.func)
print(id(instance2.func), instance2.func)
print(id(instance3.func), instance3.func)
# they are same thing
Posted by: Guest on August-14-2021

Python Answers by Framework

Browse Popular Code Answers by Language