Metadata-Version: 2.4
Name: jotprint
Version: 0.1.0
Summary: Una forma sencilla de imprimir textos con separadores personalizados
Author-email: Jotpartap Singh <jotsisi@iesvalldemossa.net>
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# 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 jotprint``
- ``pip3 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:

```python
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:
```python
import jotprint

jotprint.write("I love", "Python3", sep=" ")
```
The output of the program is:
```
I love Python3
```

Another example:
```python
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
