Abgeleitete Eigenschaften von typing.NamedTuple werden zwischengespeichertPython

Python-Programme
Anonymous
 Abgeleitete Eigenschaften von typing.NamedTuple werden zwischengespeichert

Post by Anonymous »

Ich habe ein NamedTuple:

Code: Select all

from typing import NamedTuple
from functools import cached_property

class NT(NamedTuple):
a: int
b: int

@property
def primefactors_a(self):
n = self.a
if n < 2:
return []
factors = []
d = 2
while d

Quick Reply

Change Text Case: 
   
  • Similar Topics
    Replies
    Views
    Last post