⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
lib
/
python3.12
/
__pycache__
/
View File Name :
numbers.cpython-312.pyc
CRh, d Z ddlmZmZ g dZ G d de Z G d de Zej e G d d e Z e j e G d de Z G d de Zej e y)z~Abstract Base Classes (ABCs) for numbers, according to PEP 3141. TODO: Fill out more detailed documentation on the operators. )ABCMetaabstractmethod)NumberComplexRealRationalIntegralc e Zd ZdZdZdZy)r zAll numbers inherit from this class. If you just want to check if an argument x is a number, without caring what kind, use isinstance(x, Number). N)__name__ __module____qualname____doc__ __slots____hash__r /usr/lib/python3.12/numbers.pyr r % s I Hr r ) metaclassc : e Zd ZdZdZed Zd Zeed Z eed Z ed Zed Zed Z ed Zd Zd Zed Zed Zed Zed Zed Zed Zed Zed Zed Zy)r af Complex defines the operations that work on the builtin complex type. In short, those are: a conversion to complex, .real, .imag, +, -, *, /, **, abs(), .conjugate, ==, and !=. If it is given heterogeneous arguments, and doesn't have special knowledge about them, it should fall back to the builtin complex type as described below. r c y)z