Ich habe eine Python -Funktion, die den Python __pow__ (**) -Operator mit zwei INTs verwendet. ". Ich habe versucht, den Ausdruck auf ein int mit int (b ** e) zu werfen, aber ich erhalte trotzdem den Fehler. Wie tippe ich diesen Ausdruck korrekt ein?
Fehler: < /p>
temp.py:7: error: Expression has type "Any" [misc]
power: Callable[[int, int], int] = lambda b, e: b ** e
^
< /code>
Temp.py
from functools import reduce
from typing import Callable, Dict
def factorization_product(fact: Dict[int, int]) -> int:
'''returns the product which has the prime factorization of fact'''
power: Callable[[int, int], int] = lambda b, e: b ** e # error on expression "b ** e"
product: Callable[[int, int], int] = lambda x, y: x * y
return reduce(product, [power(b, e) for b, e in fact.items()], 1)
Bearbeiten:
Ich habe festgestellt Erhalten Sie den Fehler. < /p>
Fehler: < /p>
temp.py:8: error: Expression has type "Any" [misc]
return reduce(mul, [pow(b, e) for b, e in fact.items()], 1)
^
< /code>
überarbeitete temp.from functools import reduce
from operator import mul
from typing import Dict
def factorization_product(fact: Dict[int, int]) -> int:
'''returns the product which has the prime factorization of fact'''
return reduce(mul, [pow(b, e) for b, e in fact.items()], 1)
Ich habe eine Python -Funktion, die den Python __pow__ (**) -Operator mit zwei INTs verwendet. ". Ich habe versucht, den Ausdruck auf ein int mit int (b ** e) zu werfen, aber ich erhalte trotzdem den Fehler. Wie tippe ich diesen Ausdruck korrekt ein? Fehler: < /p> [code]temp.py:7: error: Expression has type "Any" [misc] power: Callable[[int, int], int] = lambda b, e: b ** e ^ < /code> Temp.py from functools import reduce from typing import Callable, Dict
def factorization_product(fact: Dict[int, int]) -> int: '''returns the product which has the prime factorization of fact''' power: Callable[[int, int], int] = lambda b, e: b ** e # error on expression "b ** e" product: Callable[[int, int], int] = lambda x, y: x * y return reduce(product, [power(b, e) for b, e in fact.items()], 1) [/code] [b] Bearbeiten: [/b] Ich habe festgestellt Erhalten Sie den Fehler. < /p> Fehler: < /p> [code]temp.py:8: error: Expression has type "Any" [misc] return reduce(mul, [pow(b, e) for b, e in fact.items()], 1) ^ < /code> überarbeitete temp.from functools import reduce from operator import mul from typing import Dict
def factorization_product(fact: Dict[int, int]) -> int: '''returns the product which has the prime factorization of fact''' return reduce(mul, [pow(b, e) for b, e in fact.items()], 1) [/code]
Ich habe eine Zuweisung erhalten, in der ich den Inhalt einer verlinkten Liste im Originalformat drucken muss, und dann die Liste sortieren, indem ich die Bevölkerung abstieg, ohne die integrierten...
Bei Annotation eines Funktionsparameters mit einem gebundenen Typevar führt ein Standardwert in den Parameter mit einem Gewerkschaftstyp zwischen dem Typevar und dem Standardwerttyp , obwohl der...
Mir ist aufgefallen, dass sich das Ergebnis von Math.pow(10, -4) zwischen JavaScript und C# unterscheidet.
JavaScript Math.pow
C# Math.Pow
In JavaScript scheint das Ergebnis als Näherungswert...