Una forma sencilla de imprimir textos con separadores personalizados
Project description
Introduction
With this library, printing will be much easier and more customizable.
Installation
To download the library, use one of the following commands in your terminal:
pip install jotprintpip3 install jotprint
Usage
The only function in jotprint is write. In write, you specify the set of elements the program will print by separating them with commas inside parentheses. For example:
import jotprint
jotprint.write(7, "Python3", 3.14)
The output for this example is:
7
Python3
3.14
Additionally, if we specify a sep (short for separator) in write, the function will print the set separated however you choose. For example:
import jotprint
jotprint.write("I love", "Python3", sep=" ")
The output of the program is:
I love Python3
Another example:
import jotprint
a = int(input())
b = int(input())
easyprint.write("First you wrote", a, "and then", b, sep=" ")
If a = 67 and b = 76, the output is:
First you wrote 67 and then 76
License
MIT License
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
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 jotprint-0.1.0.tar.gz.
File metadata
- Download URL: jotprint-0.1.0.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48fe784309dc83036dcb3e98afdde2c12bc67eac6125144d3014d82eb8afcfa7
|
|
| MD5 |
43e11709faf5e9b33196c5ce32f2d84e
|
|
| BLAKE2b-256 |
fe807c0522ada1528bafd3080ca63f18f79cbe1c3652cc13305f56fe1e273d78
|
File details
Details for the file jotprint-0.1.0-py3-none-any.whl.
File metadata
- Download URL: jotprint-0.1.0-py3-none-any.whl
- Upload date:
- Size: 2.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5d7025ff5c553c4f8bdb4b1484bb06b9f84d4cd66cd7cdcf43a0cfd83b993bbc
|
|
| MD5 |
5dd82183c06d3ebcc364a731bf158a0d
|
|
| BLAKE2b-256 |
09b5e60134d1c1a1aa893a5a004540c94b68220483a901f715bc7f48f95911b4
|