Python Library .whl
Python Library .whl
Library :1
pip: Python installer package ♦♦♦♦♦
Description: auto input setting for python programming
problems:
in programming time, we have to give input into the program again and again to check the program's output. it seems so boring to me, for this, i build a library to solve this boring "frequential inputting", useable it in python IDE or VsCode.
Download the library file:- "autoinput-0.0.1-py3-none-any.rar" and extract the file
Run the command: pip install autoinput-0.0.1-py3-none-any.whl
or: pip install "package_path/autoinput-0.0.1-py3-none-any.whl"
Program Demo:
#set the input data sets like below in your program file
import auto.input as t
t.dataset("""
2
2 3 4
""")
#write your main program from below
for i in range(int(input())):
a=[int(i) for i in input().split()]
print(a)
#output:
[2, 3, 4]
If , this button opens another page, just click on "Download anyway" the download will start.
.........Python.........