Skip to main content

Gives the division forms for decimal numbers

Project description

# I am pydiv!

----
## Available functions?

Integer Return:-
----
----
>intconvert(decimalnumber,numeratorlimit,denominatorlimit)

Returns two arrays, first one with list of possible numerators and the second one with list of possible denominators. Matching indices of the two lists represent the numerator and denominator of a number.

**EXAMPLES:-**

1.
----
import pydiv
a=3.14
x=100
y=100
m=pydiv.intconvert(a,x,y)
print(m)

**WOULD PRINT**:

>([22, 44, 66, 85, 88], [7, 14, 21, 27, 28])

i.e., a tuple containing the numerator list and the denominator list.

2.
----

import pydiv
a=3.14
x=100
y=100
m,n=pydiv.intconvert(a,x,y)
print(m)
print(n)

**WOULD PRINT:**

>[22, 44, 66, 85, 88]

>[7, 14, 21, 27, 28]

i.e., two separate lists, one stored in m (storing numerator list) and the other in n (storing denominator list).


String Return:-
----
----

>convert(decimalnumber,numeratorlimit,denominatorlimit)

Returns a string array with possible division forms of a decimal number.

**EXAMPLE:-**

import pydiv
a=3.14
x=100
y=100
m=pydiv.convert(a,x,y)
print(m)

**WOULD PRINT:**

>['22/7', '44/14', '66/21', '85/27', '88/28']

i.e., a list of the possible division forms of a decimal number.


Made by Ankan Das, UEM-K
----

Project details


Release history Release notifications | RSS feed

This version

2.1

Download files

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

Source Distribution

pydiv-2.1.tar.gz (2.7 kB view details)

Uploaded Source

File details

Details for the file pydiv-2.1.tar.gz.

File metadata

  • Download URL: pydiv-2.1.tar.gz
  • Upload date:
  • Size: 2.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pydiv-2.1.tar.gz
Algorithm Hash digest
SHA256 c4bf95a7077fd86b5d15771f5b85d970e8f16b4aa7550e55eea99c83ab48e223
MD5 f7a7759674e01b98350ab8d75b5558a5
BLAKE2b-256 089df92d6e10cf852cbab2c89ed37bd2c5972f4129ed5c97075907e9c0dfd78f

See more details on using hashes here.

Supported by

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