Skip to content

jotsisi/jotprint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:

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

About

Con este repositorio imprimir datos será mucho más facil.

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages