Skip to main content

Simple digital manipulation

Project description

Help on module Extendedmathuse:

NAME Extendedmathuse

CLASSES builtins.object N_arynumber

class N_arynumber(builtins.object)
 |  N_arynumber(number, Decimal=10, a=['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'], join=',', **kw)
 |  
 |  This category supports a+b, ab, a*b, a/b, a//b, a%b, a==b, a<b, a>b, a<=b, a>=b, a!=b, and support mixed with int type.
 |  You can use self.number, self.Decimal, self.a , self.join, self.is_positive to see the specific value.(see the description of binaryconversion for information on self)
 |  Keyword parameters introduction:
 |      special_choice->Select 'a' or 'm' or None,
 |      'a': add on the default a (0~9&A~Z)
 |      'm': use decimal as the number on the digit
 |  
 |  Methods defined here:
 |  
 |  __add__(a, b)
 |  
 |  __eq__(a, b)
 |      Return self==value.
 |  
 |  __floordiv__(a, b)
 |  
 |  __ge__(a, b)
 |      Return self>=value.
 |  
 |  __gt__(a, b)
 |      Return self>value.
 |  
 |  __init__(self, number, Decimal=10, a=['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'], join=',', **kw)
 |      Initialize self.  See help(type(self)) for accurate signature.
 |  
 |  __int__(a)
 |  
 |  __le__(a, b)
 |      Return self<=value.
 |  
 |  __lt__(a, b)
 |      Return self<value.
 |  
 |  __mod__(a, b)
 |  
 |  __mul__(a, b)
 |  
 |  __ne__(a, b)
 |      Return self!=value.
 |  
 |  __radd__(b, a)
 |  
 |  __repr__(a)
 |      Return repr(self).
 |  
 |  __req__(b, a)
 |  
 |  __rfloordiv__(b, a)
 |  
 |  __rge__(b, a)
 |  
 |  __rgt__(b, a)
 |  
 |  __rle__(b, a)
 |  
 |  __rlt__(b, a)
 |  
 |  __rmod__(b, a)
 |  
 |  __rmul__(b, a)
 |  
 |  __rne__(b, a)
 |  
 |  __rsub__(b, a)
 |  
 |  __rtruediv__(b, a)
 |  
 |  __str__(a)
 |      Return str(self).
 |  
 |  __sub__(a, b)
 |  
 |  __truediv__(a, b)
 |  
 |  is_positive(self)
 |  
 |  ----------------------------------------------------------------------
 |  Data descriptors defined here:
 |  
 |  __dict__
 |      dictionary for instance variables (if defined)
 |  
 |  __weakref__
 |      list of weak references to the object (if defined)
 |  
 |  ----------------------------------------------------------------------
 |  Data and other attributes defined here:
 |  
 |  __hash__ = None

FUNCTIONS binaryconversion(number, newradix=2, a=['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'], append=None, join=',') This is a function for converting a numeric hex: number -> Is N_arynumber or decimal number type, you can use N_arynumber(number, hexadecimal (default is 10), the list of characters or strings used (default is 09&AZ), connector (default is ',') ,is_positive(kw,bool,default is True)) newradix -> The number of the number to convert to, the default is 2 a, append, join -> The character to be converted into a number, starting from 1, the default is 19&AZ, input 'a' to append to the default list, and 'm' to use decimal digits in digits ( Of course, it is very possible to use join (the default is ', ') to separate digits)

decompositionfactor(a)
    This function can decompose a positive integer a by a prime factor:
        a-> a positive integer that needs to be decomposed

isprimenumber(a)
    This function returns whether a is a prime number:
    a -> the number to be detected, int

primenumberinrange(d=None, b=None)
    This function returns all prime numbers in a region:
    d -> number of starts (default is 1, int)
    b -> the last number of the ending number (default is 1, int)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Extendedmathuse-2.0.4.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

Extendedmathuse-2.0.4-py3-none-any.whl (6.2 kB view details)

Uploaded Python 3

File details

Details for the file Extendedmathuse-2.0.4.tar.gz.

File metadata

  • Download URL: Extendedmathuse-2.0.4.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.5

File hashes

Hashes for Extendedmathuse-2.0.4.tar.gz
Algorithm Hash digest
SHA256 bc8562f570f36d1aea980b067e9b1bc6a06d661bb0d2b692a8cb26955b1a58ec
MD5 513b56567a7d3b0f3d0eac6c83b035a9
BLAKE2b-256 12e181c74f207e4c4e16bdbb28241d129c91af8636b2df6b3420189da4b4a516

See more details on using hashes here.

File details

Details for the file Extendedmathuse-2.0.4-py3-none-any.whl.

File metadata

  • Download URL: Extendedmathuse-2.0.4-py3-none-any.whl
  • Upload date:
  • Size: 6.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.37.0 CPython/3.7.5

File hashes

Hashes for Extendedmathuse-2.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 5e5b18537723abaf59b0e84210002201b2578e36f9fb3d014ff9dc9f37bda371
MD5 e9d6c43740b60682fcbbcf77f4ee05eb
BLAKE2b-256 cf002d6be9b208504e43e3822e15f014702151b1b24e319f9f372d394b77a2b9

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page