Metadata-Version: 2.1
Name: triprint
Version: 1.0.5
Summary: This package is created by Vikrant Singh. This package is used for printing '*' or '#' triangles for desired number of rows.
Home-page: https://github.com/vikrantsingh298/Vikrant-s-Stuff/blob/master/triangle_print.py
Author: Vikrant Singh
Author-email: vikrants298@gmail.com
License: MIT
Platform: UNKNOWN
Description-Content-Type: text/markdown

This package can be used for getting desired number of row star traiangle in up or down direction by giving an input for the desired number of rows.
# Use
For example if you want to get a 5 row star triangle in upward direction. Then you can simply code it as,

import triprint

triprint.pstar(5,1)

# First input will give the number of rows and second input is the boolean 0 or 1, 0 for down triangle and 1 for upper triangle.

# Attribute  
pstar('Number of rows in int','0 or 1')  # For printing triangles made up of '*'

phash('Number of rows in int','0 or 1')  # For printing triangles made up of '#

pdoller('Number of rows in int','0 or 1')  # For printing triangles made up of '$'

pat('Number of rows in int','0 or 1')  # For printing triangles made up of '@'

