Basic Understanding of publishing packages to the PYpi
Project description
this is the package created and developed by author: Vishwa
def div(a, b): """ Divide two numbers.
This function takes two numerical inputs, `a` and `b`, and returns the result of dividing `a` by `b`.
Parameters:
a (int or float): The numerator.
b (int or float): The denominator. Must not be zero.
Returns:
float: The result of dividing `a` by `b`.
Raises:
ZeroDivisionError: If `b` is zero.
Example:
>>> div(10, 2)
5.0
"""
return a / b
def mod(a, b): """ Calculate the remainder of division (modulus) of two numbers.
This function takes two numerical inputs, `a` and `b`, and returns the remainder when `a` is divided by `b`.
Parameters:
a (int or float): The dividend.
b (int or float): The divisor. Must not be zero.
Returns:
int or float: The remainder of the division of `a` by `b`.
Raises:
ZeroDivisionError: If `b` is zero.
Example:
>>> mod(10, 3)
1
"""
return a % b
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
v_data_analyst-1.1.0.tar.gz
(2.7 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file v_data_analyst-1.1.0.tar.gz.
File metadata
- Download URL: v_data_analyst-1.1.0.tar.gz
- Upload date:
- Size: 2.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f206abada2a9d6bba415587eb73b2ebfb048f7baf9c9b48e218b6f45c5f79ee
|
|
| MD5 |
31f0c311e10f8eb35e041b9b6e425777
|
|
| BLAKE2b-256 |
a3f779a4dffb1c6384971dfc44ccb932d1c8a6d0968597ad90895b33f9ab0b42
|
File details
Details for the file v_data_analyst-1.1.0-py3-none-any.whl.
File metadata
- Download URL: v_data_analyst-1.1.0-py3-none-any.whl
- Upload date:
- Size: 3.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75360d41e56e26664029e7dddee59ab1ee0d6c225a6fca33e26705e75c431f94
|
|
| MD5 |
21e6347ed6897514de9cb07b9b605d29
|
|
| BLAKE2b-256 |
370afd8f56bb49e9f03ba1343f77977ef03e99072e7c4b38a7dc73f7d042d237
|