tnumbers


Nametnumbers JSON
Version 0.0.1 PyPI version JSON
download
home_pagehttps://github.com/Trimuchinni/tnumbers
SummaryThis package gives a list of evens,odds and prime numbers between two numbers(both inclusive)
upload_time2023-03-18 14:46:05
maintainer
docs_urlNone
authorTrimurthulu Chinni
requires_python
licenseMIT
keywords evens even odds odd numbers number primes prime between evens between odds between primes between
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            This module return all the even umbers between the given two numbers(Both inclusive).

How to make most use of the module?

simply run the following command "pip install tnumbers" in the command prompt

then open up your project and import tevevn package

now you are ready to use the function evens_between

-------------USAGE----------------

import tnumbers

//Prints the values between two integers a and b where a<b
a,b=2,20

evens=tnumbers.evens_between(a,b)
print(evens)//output is [2,4,6,8,10,12,14,16,18,20]

//similarly for odd and prime numbers
print(tnumbers.odds_between(a,b)) //output is [3, 5, 7, 9, 11, 13, 15, 17, 19]
print(tnumbers.primes_between(a,b)) //output is [2,3,5,7,11,13,17,19]

Change Log
=====================

0.0.1(18/03/2023)
----------------------
-First Release
            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Trimuchinni/tnumbers",
    "name": "tnumbers",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "evens,even,odds,odd,numbers,number,primes,prime,between,evens between,odds between,primes between",
    "author": "Trimurthulu Chinni",
    "author_email": "trimuchinni23@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a9/e1/1591c42f3b13bfc35b40bb8ca96b1ff75539ea41c4907e2a033648008a35/tnumbers-0.0.1.tar.gz",
    "platform": null,
    "description": "This module return all the even umbers between the given two numbers(Both inclusive).\n\nHow to make most use of the module?\n\nsimply run the following command \"pip install tnumbers\" in the command prompt\n\nthen open up your project and import tevevn package\n\nnow you are ready to use the function evens_between\n\n-------------USAGE----------------\n\nimport tnumbers\n\n//Prints the values between two integers a and b where a<b\na,b=2,20\n\nevens=tnumbers.evens_between(a,b)\nprint(evens)//output is [2,4,6,8,10,12,14,16,18,20]\n\n//similarly for odd and prime numbers\nprint(tnumbers.odds_between(a,b)) //output is [3, 5, 7, 9, 11, 13, 15, 17, 19]\nprint(tnumbers.primes_between(a,b)) //output is [2,3,5,7,11,13,17,19]\n\nChange Log\n=====================\n\n0.0.1(18/03/2023)\n----------------------\n-First Release",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "This package gives a list of evens,odds and prime numbers between two numbers(both inclusive)",
    "version": "0.0.1",
    "split_keywords": [
        "evens",
        "even",
        "odds",
        "odd",
        "numbers",
        "number",
        "primes",
        "prime",
        "between",
        "evens between",
        "odds between",
        "primes between"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9e11591c42f3b13bfc35b40bb8ca96b1ff75539ea41c4907e2a033648008a35",
                "md5": "0f7313414d79fc91bd27e02f92d9cc8a",
                "sha256": "96e571129c2e8724f4ae229843cc137a75e946ead173339d58de3fb230fc8082"
            },
            "downloads": -1,
            "filename": "tnumbers-0.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "0f7313414d79fc91bd27e02f92d9cc8a",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 2831,
            "upload_time": "2023-03-18T14:46:05",
            "upload_time_iso_8601": "2023-03-18T14:46:05.815420Z",
            "url": "https://files.pythonhosted.org/packages/a9/e1/1591c42f3b13bfc35b40bb8ca96b1ff75539ea41c4907e2a033648008a35/tnumbers-0.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-03-18 14:46:05",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "Trimuchinni",
    "github_project": "tnumbers",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "tnumbers"
}
        
Elapsed time: 0.06646s