Metadata-Version: 2.4
Name: Susmita_Pattern_printing
Version: 0.1.1
Summary: This package contains  differnt functions for  patterns
Home-page: https://github.com/prachikabra121/prachi-test-package
Author: Susmita Shinde
Author-email: shindesusmitasumit@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: license
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary

# pattern_pack
This a simple package to print a patterns

## Installation

Install it using pip:

pip install Susmita_Pattern_printing

from pattern_pack import (pyramid,right_angle,left_angle)


# pyramid
pyramid(5)

# output
    * 
   * * 
  * * * 
 * * * * 
* * * * * 

# right_angle

right_angle(4)

# output

*
**
***
****

# left_angle

left_angle(4)

# output

  *
 **
***
